diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-09-15 16:09:51 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-09-15 16:09:51 +0000 |
commit | 5bd91f977adc4482d350231ff134d50dd493411a (patch) | |
tree | 9b4f96864aeb2c77ab0e8e18e5393ce42b100ca7 /packages/win32_inno | |
parent | 751d52ea76a1b22ec914f2a1fc1f664d1fe9c2a4 (diff) |
make pentium4 the minimum CPU so we can use SSE2 (p4 arrived in 2000).
svn path=/trunk/; revision=15295
Diffstat (limited to 'packages/win32_inno')
-rwxr-xr-x | packages/win32_inno/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/win32_inno/Makefile b/packages/win32_inno/Makefile index 394576ed..e407d35b 100755 --- a/packages/win32_inno/Makefile +++ b/packages/win32_inno/Makefile @@ -14,8 +14,8 @@ BUILDLAYOUT_DIR = $(cvs_root_dir)/packages include $(BUILDLAYOUT_DIR)/Makefile.buildlayout -# Generic x86 (tune for Pentium III, since that's most common these days) -OPT_CFLAGS += -mcpu=i586 -mtune=pentium3 +# compile for pentium4 so we can use SSE2 +OPT_CFLAGS += -march=pentium4 -msse2 -mfpmath=sse # these are sent to all of the various Makefiles so that they all copy their |