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: [email protected]
ReportedBy: [email protected]
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.
--