Leave out architecture 'ia64'

As per suggestion of Johannes Zmoelnig. It is not relevant and
also not compatible with x86_64.
This commit is contained in:
katjav 2018-01-21 11:19:43 +01:00
parent ef21a16eb0
commit 37d23530c6

View file

@ -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