diff options
author | Willy Tarreau <w@1wt.eu> | 2007-12-16 08:36:42 +0100 |
---|---|---|
committer | Willy Tarreau <w@1wt.eu> | 2007-12-16 08:36:42 +0100 |
commit | 844f206c6bda12e8084f110470dec9a18937999b (patch) | |
tree | d580653a90886bcdb0371b4f63197539496b8cbe /include | |
parent | [RELEASE] flxutils-0.1.30-flx0.3 (diff) | |
download | flxutils-844f206c6bda12e8084f110470dec9a18937999b.tar.xz |
build: remove extraneous '-Os' in diet call
This extraneous '-Os' in the call to the "diet" utility lead to less
effective optimizations than the ones from "pkg". About 200 bytes
have been removed from "init" with this change.
Diffstat (limited to 'include')
-rw-r--r-- | include/rules.make | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/rules.make b/include/rules.make index 8e4c36d..58d0af1 100644 --- a/include/rules.make +++ b/include/rules.make @@ -5,7 +5,7 @@ SSTRIP ?= sstrip DIET ?= diet CC_ORIG := $(CC) -override CC := $(DIET) -Os $(CC) +override CC := $(DIET) $(CC) CFLAGS=$(GCC_ARCH_SMALL) $(GCC_CPU_SMALL) $(GCC_OPT_SMALL) #-mpreferred-stack-boundary=2 -malign-jumps=0 -malign-loops=0 -malign-functions=0 -Os -march=i386 -mcpu=i386 |