From a8b333fdc6faba6b4e5b0489f3d1cc9960395be6 Mon Sep 17 00:00:00 2001 From: Joel Dice Date: Tue, 11 Aug 2009 09:31:00 -0600 Subject: [PATCH] define LD and LX unconditionally for __x86_64__ since they should be the same for Windows and POSIX --- src/common.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/common.h b/src/common.h index 1687cec28f..4896bd2201 100644 --- a/src/common.h +++ b/src/common.h @@ -44,14 +44,12 @@ # define ULD "u" # endif #elif defined __x86_64__ +# define LD "ld" +# define LX "lx" # ifdef __MINGW32__ -# define LD "I64d" -# define LX "I64x" # define LLD "I64d" # define ULD "I64x" # else -# define LD "ld" -# define LX "lx" # define LLD "ld" # define ULD "lu" # endif