Mail Archives: djgpp/1997/05/27/17:20:27
Janez Pers wrote:
>
> d:/djgpp/bin\ld.exe: cc1: .text: line number overflow: 0x10b51 > 0
> xffff
This is a limitation of the COFF object file format. It can hold
only up to 0xffff line number entries in the debugging information
and the above shows you, that this limit reached.
Either compile some or all file with debugging information
disabled (with -g0 or without any -g) or do the final link
step by stripping the debugging information, for instance
the following should work:
make LDFLAGS=-s
Robert
--
*****************************************************************
* Robert Hoehne, Fakultaet fuer Mathematik, TU-Chemnitz-Zwickau *
* Post: Am Berg 3, D-09573 Dittmannsdorf *
* e-Mail: Robert DOT Hoehne AT Mathematik DOT TU-Chemnitz DOT DE *
* WWW: http://www.tu-chemnitz.de/~rho *
*****************************************************************
- Raw text -