www.digitalmars.com         C & C++   DMDScript  

c++ - unexpected OPTLINK termination at...

reply Hakki Dogusan <dogusanh tr.net> writes:
Hi,

I think dmc doesn't like big sources..

Linker was working on a file which has 53136 lines.

This file is machine generated lua bindings of wx (wxLua).
(So I don't want edit it)


Any hints?

--
Regards,
Hakki Dogusan
Mar 18 2004
next sibling parent Jan Knepper <jan smartsoft.us> writes:
Search this newsgroup for linker related issue's. I recently wrote a 
list with all linker issue's I know about.


OptLink has problems:

* On multi processor platform. Every once and a while OptLink would just 
freeze on me on my Dual P3 733 MHz... The Machine I now use as the 
internet host system which hosts www.digitalmars.com and 
news.digitalmars.com...

* If you have HUGE static data. Something like:

struct  DATA
{
    DWORD    array [ 16 ];
};

DATA    hugedata [ 1000000 ];

OptLink might crash and just take the IDDE down with it.

* ???



Hakki Dogusan wrote:
 Hi,
 
 I think dmc doesn't like big sources..
 
 Linker was working on a file which has 53136 lines.
 
 This file is machine generated lua bindings of wx (wxLua).
 (So I don't want edit it)
 
 
 Any hints?
 
 -- 
 Regards,
 Hakki Dogusan
 
 ------------------------------------------------------------------------
 
-- ManiaC++ Jan Knepper But as for me and my household, we shall use Mozilla... www.mozilla.org
Mar 18 2004
prev sibling parent Hakki Dogusan <dogusanh tr.net> writes:
Hi,


Hakki Dogusan wrote:

 Hi,
 
 I think dmc doesn't like big sources..
 
 Linker was working on a file which has 53136 lines.
 
 This file is machine generated lua bindings of wx (wxLua).
 (So I don't want edit it)
 
 
 Any hints?
 
 -- 
 Regards,
 Hakki Dogusan
 
 ------------------------------------------------------------------------
 
Since wxLua released a new version I'm facing this problem again. (I manually fragmented generated file to link before) What can I do ? Manual edit again ? :-( HELP!!! -- Regards, Hakki Dogusan
Jan 20 2005