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 ***