diff options
author | Willy Tarreau <w@1wt.eu> | 2007-12-16 17:08:21 +0100 |
---|---|---|
committer | Willy Tarreau <w@1wt.eu> | 2007-12-16 17:08:21 +0100 |
commit | d420babd844a4e6ffc2af037b299b1ea6898e332 (patch) | |
tree | b35bfc3887dba2535f6c99114c1f5b0705effeab | |
parent | init: added the 'eq' command to compare strings (diff) | |
download | flxutils-d420babd844a4e6ffc2af037b299b1ea6898e332.tar.xz |
init: disable omit-leaf-frame-pointer
We can gain about 100 bytes using this.
-rw-r--r-- | init/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init/Makefile b/init/Makefile index 8b95b06..9bcbcde 100644 --- a/init/Makefile +++ b/init/Makefile @@ -1,3 +1,3 @@ OBJS=init mkdev include ../include/rules.make -CFLAGS+=-fomit-frame-pointer -Wl,--gc-sections +CFLAGS+=-fomit-frame-pointer -mno-omit-leaf-frame-pointer -Wl,--gc-sections |