From e537f25857eeb18f0a2b7df50f98aa60900d8ba8 Mon Sep 17 00:00:00 2001 From: "Markus F.X.J. Oberhumer" Date: Mon, 6 Jan 2003 13:03:09 +0000 Subject: [PATCH] Default to `-cpu=i686'. committer: mfx 1041858189 +0000 --- src/Makefile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Makefile b/src/Makefile index 95c35271..c3e36962 100644 --- a/src/Makefile +++ b/src/Makefile @@ -198,7 +198,7 @@ DEFS += '-DUPX_CONFIG_H="config_h/linux.h"' DEFS += -D_FILE_OFFSET_BITS=64 LDLIBS += -lmcheck ifeq ($(arch),i386) - CC += -march=i386 -mcpu=i586 + CC += -march=i386 -mcpu=i686 ##CFLAGS_M += -mno-schedule-prologue endif ##CFLAGS_WERROR = -Werror @@ -295,7 +295,7 @@ endif ifeq ($(target),djgpp2) e = .exe -CC += -march=i386 -mcpu=i586 +CC += -march=i386 -mcpu=i686 ##CFLAGS_M += -mno-schedule-prologue CFLAGS_WERROR = -Werror STUBEDIT_EXE = stubedit $@ bufsize=0xfc00 @@ -313,7 +313,7 @@ endif # djgpp2 ifeq ($(target),cygwin) e = .exe -CC += -march=i386 -mcpu=i586 +CC += -march=i386 -mcpu=i686 CXXLD = g++ ##CFLAGS_M += -mno-schedule-prologue endif @@ -321,7 +321,7 @@ endif ifeq ($(target),mingw32) e = .exe CC = gcc -mno-cygwin -CC += -march=i386 -mcpu=i586 +CC += -march=i386 -mcpu=i686 CXXLD = g++ -mno-cygwin ##CFLAGS_M += -mno-schedule-prologue endif @@ -330,7 +330,7 @@ endif ifeq ($(target),no-cygwin) e = .exe CC = gcc -mno-cygwin -CC += -march=i386 -mcpu=i586 +CC += -march=i386 -mcpu=i686 CXXLD = g++ -mno-cygwin ##CFLAGS_M += -mno-schedule-prologue endif @@ -339,7 +339,7 @@ endif ifeq ($(target),cross-mingw32) e = .exe CC = i586-mingw32msvc-gcc -CC += -march=i386 -mcpu=i586 +CC += -march=i386 -mcpu=i686 CXXLD = i586-mingw32msvc-g++ ##CFLAGS_M += -mno-schedule-prologue endif