From 3a2765fc4e360a1eea76d439d1c5fd0b4a4a7d14 Mon Sep 17 00:00:00 2001 From: Howard Hinnant Date: Tue, 31 Jan 2012 20:22:59 +0000 Subject: Back the optimization down from -O3 to -Os. I'm getting an unexplained crasher on -O3. I've looked for a libc++abi bug and can't find one. I'm suspecting clang optimizer bug. But I don't have a good test case at the moment. Deferring investigation on this for now as I will soon be developing more and smaller tests. git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@149414 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/buildit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib') diff --git a/lib/buildit b/lib/buildit index 51b9a81..89f7dac 100755 --- a/lib/buildit +++ b/lib/buildit @@ -73,7 +73,7 @@ fi set -x for FILE in ../src/*.cpp; do - $CXX -c -g -O3 $RC_CFLAGS $EXTRA_FLAGS -I../include $FILE + $CXX -c -g -Os $RC_CFLAGS $EXTRA_FLAGS -I../include $FILE done case $TRIPLE in *-*-mingw*) -- cgit v1.2.3