From 938c4b3563802abe8a913bab016ffeb29567790d Mon Sep 17 00:00:00 2001 From: Nandor Kracser Date: Mon, 9 Jul 2012 21:05:11 +0200 Subject: [PATCH] Changing LLD to 'lld' because it raises compile warnings in interpret.cc on Mac OS X (make process=interpret). --- src/common.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/common.h b/src/common.h index 494a39291e..1c45e2e855 100644 --- a/src/common.h +++ b/src/common.h @@ -145,7 +145,11 @@ typedef intptr_t __attribute__((__may_alias__)) intptr_alias_t; # define LLD "I64d" # define ULD "I64x" # else -# define LLD "ld" +# ifdef __APPLE__ +# define LLD "lld" +# else +# define LLD "ld" +# endif # define ULD "lu" # endif #else