Bug 3299 – DMD does not build under Ubuntu linux

Status
RESOLVED
Resolution
DUPLICATE
Severity
minor
Priority
P2
Component
dmd
Product
D
Version
D1 (retired)
Platform
Other
OS
Linux
Creation time
2009-09-04T10:54:00Z
Last change time
2014-04-18T09:12:05Z
Assigned to
nobody
Creator
baseball.mjp

Comments

Comment #0 by baseball.mjp — 2009-09-04T10:54:12Z
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.
Comment #1 by dsimcha — 2009-10-12T20:26:08Z
*** This issue has been marked as a duplicate of issue 2908 ***