angstrom glibc.inc: use -O1 for perl to fix #1616
authorKoen Kooi <koen@openembedded.org>
Mon, 11 Dec 2006 11:12:48 +0000 (11:12 +0000)
committerKoen Kooi <koen@openembedded.org>
Mon, 11 Dec 2006 11:12:48 +0000 (11:12 +0000)
conf/distro/include/angstrom-glibc.inc

index 6ee5097..28e3b3e 100644 (file)
@@ -7,7 +7,13 @@ TARGET_OS = "linux${@['','-gnueabi'][bb.data.getVar('TARGET_ARCH',d,1)=='arm']}"
 
 #mess with compiler flags to use -Os instead of -O2
 #Please see http://free-electrons.com/doc/embedded_linux_optimizations/img47.html for some more info
+# perl has some problems, see http://bugs.openembedded.org/show_bug.cgi?id=1616
+
 FULL_OPTIMIZATION = "-fexpensive-optimizations -fomit-frame-pointer -frename-registers -Os"
+FULL_OPTIMIZATION_pn-perl = "-fexpensive-optimizations -fomit-frame-pointer -frename-registers -O1"
+
 BUILD_OPTIMIZATION = "-Os"
+BUILD_OPTIMIZATION_pn-perl = "-O1"
+
 CXXFLAGS += "-fvisibility-inlines-hidden"