summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorHoward Hinnant <hhinnant@apple.com>2012-01-31 20:22:59 +0000
committerHoward Hinnant <hhinnant@apple.com>2012-01-31 20:22:59 +0000
commit3a2765fc4e360a1eea76d439d1c5fd0b4a4a7d14 (patch)
treecaa39b4a8225e90a2ad079dc4cafafe0a89bb2aa /lib
parent9fb5709499823d560501170735097ba77152aa5d (diff)
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
Diffstat (limited to 'lib')
-rwxr-xr-xlib/buildit2
1 files changed, 1 insertions, 1 deletions
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*)