|
Archives
D Programming
digitalmars.Ddigitalmars.D.bugs digitalmars.D.dtl digitalmars.D.ide digitalmars.D.dwt digitalmars.D.announce digitalmars.D.learn digitalmars.D.debugger D.gnu D 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 electronics |
D.gnu - phobos build error
Hey, I have been doing work on GDC to try and get it updated to a later DMD
front end.
I have been doing it incrementally, and am currently trying to do 1.031-1.032.
I have had some problems, like not being able to find a reference to
"util_progress"(is it in the DMD backend?), so I just commented it out in the
one function that it appeared in. Also an assert failure in statement.c. :P But
commented out the assert for now.
Anyways, I am having problems when building phobos. When it get to math.d, I
get problems about {standard input}. There is a log of what happens, plus the
errors, here:
http://pastebin.com/m2ee8a840
Anyone know what the problem might be?
The project on bitbucket is here:
http://bitbucket.org/goshawk/gdc/overview/
It contains the code I used to try and build GDC with.
Sep 25 2009
Michael P. Wrote: Sep 25 2009
Michael P. wrote:GDC compiles, but it doesn't work. When you try to compile, it gives a bunch of undefined reference errors to std.math functions. So I would assume the problem is somewhere in math.d. Sep 26 2009
Vincenzo Ampolo Wrote:Michael P. wrote:GDC compiles, but it doesn't work. When you try to compile, it gives a bunch of undefined reference errors to std.math functions. So I would assume the problem is somewhere in math.d. Sep 26 2009
Michael P. wrote:I fixed it. :) The problem actually wasn't in math.d. There was lots of asm in math.d, and in ExtAsmStatement, in Sep 26 2009
|