summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWayne Meissner <wmeissner@gmail.com>2012-04-21 07:49:10 +1000
committerWayne Meissner <wmeissner@gmail.com>2012-04-21 07:49:10 +1000
commit7139defeae16b9032922e5505e1fe3f464c3e92b (patch)
tree98c46408e07fcc4ed6a0eed14ea6e05a5c05e05e
parentd9881f99195524c4c5dcd198b46040ae6552021b (diff)
downloadffi-7139defeae16b9032922e5505e1fe3f464c3e92b.tar.gz
add -fomit-frame-pointer when compiling libtest
-rw-r--r--libtest/GNUmakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/libtest/GNUmakefile b/libtest/GNUmakefile
index a7ba9e6..32a5c05 100644
--- a/libtest/GNUmakefile
+++ b/libtest/GNUmakefile
@@ -33,7 +33,7 @@ TEST_OBJS := $(patsubst $(SRC_DIR)/%.c, $(TEST_BUILD_DIR)/%.o, $(TEST_SRCS))
#
# Compiler/linker flags from:
# http://weblogs.java.net/blog/kellyohair/archive/2006/01/compilation_of_1.html
-JFLAGS = -fno-omit-frame-pointer -fno-strict-aliasing
+JFLAGS = -fomit-frame-pointer -fno-strict-aliasing
OFLAGS = -O2 $(JFLAGS)
WFLAGS = -W -Wall -Wno-unused -Wno-parentheses
PICFLAGS = -fPIC