[Issue 2908] New: Build error: ../mars/mars.h doesn't exist
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Tue Apr 28 11:45:33 PDT 2009
http://d.puremagic.com/issues/show_bug.cgi?id=2908
Summary: Build error: ../mars/mars.h doesn't exist
Product: D
Version: 2.026
Platform: PC
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: bugzilla at digitalmars.com
ReportedBy: dsimcha at yahoo.com
Lines 53-55 in backend.c:
#if MARS
#include "../mars/mars.h" // This file doesn't exit.
#endif
I guess this got by so many other people because MARS is only defined on really
old Linux distros. To fix the problem, change it to:
#include "../mars.h" // Works.
--
More information about the Digitalmars-d-bugs
mailing list