From e6b997d5b8a1c81bdcfcccf43fa1b1b62276f9f1 Mon Sep 17 00:00:00 2001 From: theoddone33 <> Date: Sat, 2 Mar 2002 06:42:02 +0000 Subject: [PATCH] Fix my dumb screwup (-fno-omit... in wrong place) --- zsnes/src/configure.in | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/zsnes/src/configure.in b/zsnes/src/configure.in index 3da5d5e0..05ed6059 100644 --- a/zsnes/src/configure.in +++ b/zsnes/src/configure.in @@ -124,7 +124,7 @@ if test x$debug = xyes; then dnl It is actually easier to debug zsnes with no optimization dnl enabled. - CFLAGS="$CFLAGS -DDEBUG -O0 -fomit-frame-pointer -ggdb3" + CFLAGS="$CFLAGS -DDEBUG -O0 -fno-omit-frame-pointer -ggdb3" NFLAGS="$NFLAGS -DDEBUG -g -s" ZSNESEXE="zsnesd" else @@ -134,10 +134,8 @@ else dnl Because of the way zsnes is written, these options make dnl zsnes more easily deal with small instruction caches, and more dnl effectivly use branch prediction. - dnl NOTE: -fomit-frame-pointer causes some segfaults - dnl DO NOT re-add it until they are fixed. - CFLAGS="$CFLAGS -Os -ffast-math -fno-omit-frame-pointer -fschedule-insns2 -s" + CFLAGS="$CFLAGS -Os -ffast-math -fomit-frame-pointer -fschedule-insns2 -s" ZSNESEXE="zsnes" fi