diff options
author | Nick Sayer <nsayer@FreeBSD.org> | 2001-04-06 07:15:16 +0000 |
---|---|---|
committer | Nick Sayer <nsayer@FreeBSD.org> | 2001-04-06 07:15:16 +0000 |
commit | 2551f6d52cecaa2ccce342fb386f571ae5302aa9 (patch) | |
tree | 88352c4e221a231616af415a0a16615745e80767 /emulators | |
parent | Update net/fugu from 0.9.9e to 1.0 (diff) |
Don't require a 686.
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=40928
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/xmame/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/emulators/xmame/Makefile b/emulators/xmame/Makefile index f5c3b31ba486..64c432aa5417 100644 --- a/emulators/xmame/Makefile +++ b/emulators/xmame/Makefile @@ -149,7 +149,7 @@ ASM_COMMENT=\# # Heavy optimization - enabled by default because it doesn't seem # to break things, and enables considerable speedup. .if !defined(WITH_OPTIMIZATION) || ${WITH_OPTIMIZATION} != "no" -CFLAGS+= -O3 -march=i686 -Wall -Wno-unused -funroll-loops \ +CFLAGS+= -O3 -Wall -Wno-unused -funroll-loops \ -fstrength-reduce -fomit-frame-pointer -ffast-math \ -malign-functions=4 -malign-jumps=4 -malign-loops=4 .endif |