[Issue 16536] DMD master does not build on OS X 10.11.6/Xcode 7.3.1

via Digitalmars-d-bugs digitalmars-d-bugs at puremagic.com
Fri Oct 7 09:07:11 PDT 2016


https://issues.dlang.org/show_bug.cgi?id=16536

--- Comment #9 from Martin Nowak <code at dawg.eu> ---
Looks like the difference between Xcode 7.3.x and older versions (tried 5.1.1)
is the lack of __UINTMAX_TYPE__.
Strangely David reports __UINTMAX_TYPE__ to be "long unsigned int" (compatible
w/ dmd's ulong).

Could someone who can reproduce the problem please run.

touch test.c
clang -dM -E test.c | grep UINTMAX

prints
#define __UINTMAX_TYPE__ long unsigned int

for me.

--


More information about the Digitalmars-d-bugs mailing list