How to reduce compile times?
Qian Xu
quian.xu at stud.tu-ilmenau.de
Sun Mar 22 14:34:19 PDT 2009
grauzone wrote:
> In my case, this practically always causes linker errors. Of course I
> don't know why.
You could change the order of object files by linking.
if you have -> gdmd bbb.o aaa.o ccc.o -o binrary (-L..... -l....)
change to -> gdmd aaa.o bbb.o ccc.o -o binrary (-L..... -l....)
or change to -> gdmd aaa.o bbb.o ccc.o aaa.o bbb.o ccc.o -o binrary
(-L..... -l....)
--
Xu, Qian (stanleyxu)
http://stanleyxu2005.blogspot.com
More information about the Digitalmars-d-learn
mailing list