diff options
author | Rod Whitby <rod@whitby.id.au> | 2007-03-22 06:27:56 +0000 |
---|---|---|
committer | Rod Whitby <rod@whitby.id.au> | 2007-03-22 06:27:56 +0000 |
commit | 4b1c0a49e0d956895fb798f7b89058ca29b5d15e (patch) | |
tree | 6d9aaa70c72c439a5afea18320bbbe1a46d2c130 | |
parent | 51e8d2eaedf32c27fa1867b151ee240340cd90ac (diff) |
slugos.conf: Fix FULL_OPTIMIZATION, cause it broke the wireshark package by using gcc 4 specific options.
-rw-r--r-- | conf/distro/include/slugos.inc | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/conf/distro/include/slugos.inc b/conf/distro/include/slugos.inc index 8bb143dbba..d64cb2c917 100644 --- a/conf/distro/include/slugos.inc +++ b/conf/distro/include/slugos.inc @@ -43,13 +43,7 @@ INHERIT += "package_ipk debian multimachine" # FULL_OPTIMIZATION # Optimization settings. Os works fine and is significantly better than O2. -# The other settings are somewhat arbitrary. The optimisations chosen here -# include the ones which 'break' symbolic debugging (because the compiler does -# not include enough information to allow the debugger to know where given -# values are.) The -fno options are an attempt to cancel explicit use of space -# consuming options found in some packages (this isn't a complete list, this is -# just the ones which package writers seem to know about and abuse). -FULL_OPTIMIZATION = "-Os -fomit-frame-pointer -frename-registers -fno-unroll-loops -fno-inline-functions -fweb -funit-at-a-time" +FULL_OPTIMIZATION = "-fexpensive-optimizations -fomit-frame-pointer -frename-registers -Os" #---------------------------------------------------------------------------------- # FEEDS |