From 37d23530c6be7a97e1cd29fee61db6acbe574283 Mon Sep 17 00:00:00 2001 From: katjav Date: Sun, 21 Jan 2018 11:19:43 +0100 Subject: [PATCH] Leave out architecture 'ia64' As per suggestion of Johannes Zmoelnig. It is not relevant and also not compatible with x86_64. --- Makefile.pdlibbuilder | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.pdlibbuilder b/Makefile.pdlibbuilder index 66db349..8092166 100644 --- a/Makefile.pdlibbuilder +++ b/Makefile.pdlibbuilder @@ -506,7 +506,7 @@ ifeq ($(findstring $(machine), i386 i686), $(machine)) endif # Intel/AMD 64 bit, build with SSE, SSE2 and SSE3 instructions -ifeq ($(findstring $(machine), ia64 x86_64), $(machine)) +ifeq ($(findstring $(machine), x86_64), $(machine)) arch.c.flags = -march=core2 -mfpmath=sse -msse -msse2 -msse3 endif @@ -596,7 +596,7 @@ endif # TODO: decide whether -mms-bitfields should be specified. ifeq ($(system), Windows) - ifeq ($(findstring $(target.arch), ia64 x86_64), $(target.arch)) + ifeq ($(findstring $(target.arch), x86_64), $(target.arch)) cpp.flags := -DMSW -DNT -DPD_LONGINTTYPE=__int64 arch.c.flags := -march=core2 -msse -msse2 -mfpmath=sse else