|
Archives
D Programming
DD.gnu digitalmars.D digitalmars.D.bugs digitalmars.D.dtl digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger C/C++ Programming
c++c++.announce c++.atl c++.beta c++.chat c++.command-line c++.dos c++.dos.16-bits c++.dos.32-bits c++.idde c++.mfc c++.rtl c++.stl c++.stl.hp c++.stl.port c++.stl.sgi c++.stlsoft c++.windows c++.windows.16-bits c++.windows.32-bits c++.wxwindows digitalmars.empire digitalmars.DMDScript |
D.gnu - ld and gdc
I'm trying to perform this action: gdc -c file.d ld -o file file.o But it don't find many libraries... so i tried: ld -o file file.o -lphobos -lc -lm -lpthread It doesn't work, there're many undefined references... How can i link an object file made in D with ld? Nov 14 2004
Lethalman wrote:I'm trying to perform this action: gdc -c file.d ld -o file file.o But it don't find many libraries... so i tried: ld -o file file.o -lphobos -lc -lm -lpthread It doesn't work, there're many undefined references... How can i link an object file made in D with ld? Nov 14 2004
Anders F Björklund wrote:Lethalman wrote:I'm trying to perform this action: gdc -c file.d ld -o file file.o But it don't find many libraries... so i tried: ld -o file file.o -lphobos -lc -lm -lpthread It doesn't work, there're many undefined references... How can i link an object file made in D with ld? Nov 14 2004
|