diff options
author | Howard Hinnant <hhinnant@apple.com> | 2010-08-11 17:04:31 +0000 |
---|---|---|
committer | Howard Hinnant <hhinnant@apple.com> | 2010-08-11 17:04:31 +0000 |
commit | 54b409fdb9489b305bf95f4d4f52b49c7926c429 (patch) | |
tree | 4e1c893fe8a940ea767c4eef990dff879fcbbd25 /libcxx/lib | |
parent | 37aab7674a74dd0224b14976e91f89abe48e9ae9 (diff) | |
download | bcm5719-llvm-54b409fdb9489b305bf95f4d4f52b49c7926c429.tar.gz bcm5719-llvm-54b409fdb9489b305bf95f4d4f52b49c7926c429.zip |
now works with -fno-exceptions and -fno-rtti
llvm-svn: 110828
Diffstat (limited to 'libcxx/lib')
-rwxr-xr-x | libcxx/lib/buildit | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libcxx/lib/buildit b/libcxx/lib/buildit index 44e7c3a0600..89b38b61915 100755 --- a/libcxx/lib/buildit +++ b/libcxx/lib/buildit @@ -21,7 +21,7 @@ case $TRIPLE in *-apple-*) if [ -z $RC_BUILDIT ] then - RC_CFLAGS="-arch i386 -arch x86_64" + RC_CFLAGS="-arch i386 -arch x86_64 -fno-exceptions -fno-rtti" fi SOEXT=dylib LDSHARED_FLAGS="-o libc++.1.dylib \ |