comparison src/native-gcc.mk @ 5500:512e69a36d09

Use SSE2 instruction set for i686-w64 target (bug #58807). * src/build-gcc.mk: Set specs to use SSE/SSE2 instructions by default for i686-w64-mingw32 target (Windows 32bit). * src/native-gcc.mk: Set specs to use SSE/SSE2 instructions by default for i686-w64-mingw32 target (Windows 32bit).
author Markus Mützel <markus.muetzel@gmx.de>
date Tue, 21 Jul 2020 20:27:53 +0200
parents eca81b345edf
children 933ef4ecc7f4
comparison
equal deleted inserted replaced
5499:be0a7ce498e6 5500:512e69a36d09
28 --enable-threads=posix \ 28 --enable-threads=posix \
29 --disable-multilib 29 --disable-multilib
30 30
31 ifneq ($(ENABLE_WINDOWS_64),yes) 31 ifneq ($(ENABLE_WINDOWS_64),yes)
32 $(PKG)_SYSDEP_CONFIGURE_OPTIONS += \ 32 $(PKG)_SYSDEP_CONFIGURE_OPTIONS += \
33 --disable-sjlj-exceptions 33 --disable-sjlj-exceptions \
34 --with-specs='%{!mfpmath:-mfpmath=sse} %{!msse:%{!mno-sse:-msse}} %{!msse2:%{!mno-sse2:-msse2}}'
34 else 35 else
35 $(PKG)_SYSDEP_CONFIGURE_OPTIONS += \ 36 $(PKG)_SYSDEP_CONFIGURE_OPTIONS += \
36 --enable-64bit 37 --enable-64bit
37 endif 38 endif
38 else 39 else