[Issue 3299] New: DMD does not build under Ubuntu linux;
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Fri Sep 4 10:54:13 PDT 2009
http://d.puremagic.com/issues/show_bug.cgi?id=3299
Summary: DMD does not build under Ubuntu linux;
Product: D
Version: 1.046
Platform: Other
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P2
Component: DMD
AssignedTo: nobody at puremagic.com
ReportedBy: baseball.mjp at gmail.com
Under linux(Ubuntu), building 1.047(+ 1.046, maybe other revisions too), there
is the error:
g++ -m32 -c -Wno-deprecated -D__near= -D__pascal= -fno-exceptions -O2 -Ibackend
-Itk -D__I86__=1 -DMARS=1 -DTARGET_LINUX=1 -D_DH backend/dwarf.c
backend/dwarf.c:54:26: error: ../mars/mars.h: No such file or directory
backend/dwarf.c: In function ‘void dwarf_initfile(const char*)’:
backend/dwarf.c:453: error: ‘global’ was not declared in this scope
make: *** [dwarf.o] Error 1
Fixing this is simple.
dwarf.c, line 54:
#include "../mars/mars.h"
should be:
#include "../mars.h"
Then it compiles fine.
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
More information about the Digitalmars-d-bugs
mailing list