diff options
| author | Sean Callanan <scallanan@apple.com> | 2012-08-09 01:32:13 +0000 |
|---|---|---|
| committer | Sean Callanan <scallanan@apple.com> | 2012-08-09 01:32:13 +0000 |
| commit | 1727742634b4c3136440a49ddfcb78669e4e72c2 (patch) | |
| tree | 6d47a814ece834f65f62de3565dbd7ac1aee8292 /lldb/scripts | |
| parent | 9d4b8f5a7f2f0d65010d6a2527d5d001f9464546 (diff) | |
| download | bcm5719-llvm-1727742634b4c3136440a49ddfcb78669e4e72c2.tar.gz bcm5719-llvm-1727742634b4c3136440a49ddfcb78669e4e72c2.zip | |
On Mac OS X, lldb will now build c++11 and use
libc++. We also no longer use the GNU extensions
to C++ and C (we didn't use them anyway).
This also means that the LLVM we use must be
built with the new libc++.
I will commit llvm.zip next.
<rdar://problem/11930775>
llvm-svn: 161562
Diffstat (limited to 'lldb/scripts')
| -rw-r--r-- | lldb/scripts/build-llvm.pl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/scripts/build-llvm.pl b/lldb/scripts/build-llvm.pl index 7e12568f743..41b802b6a2a 100644 --- a/lldb/scripts/build-llvm.pl +++ b/lldb/scripts/build-llvm.pl @@ -32,10 +32,10 @@ my $os_release = 11; my $original_env_path = $ENV{PATH}; our %llvm_config_info = ( - 'Debug' => { configure_options => '--disable-optimized --disable-assertions', make_options => 'DEBUG_SYMBOLS=1'}, - 'Debug+Asserts' => { configure_options => '--disable-optimized --enable-assertions' , make_options => 'DEBUG_SYMBOLS=1'}, - 'Release' => { configure_options => '--enable-optimized --disable-assertions' , make_options => ''}, - 'Release+Debug' => { configure_options => '--enable-optimized --disable-assertions' , make_options => 'DEBUG_SYMBOLS=1'}, + 'Debug' => { configure_options => '--disable-optimized --disable-assertions --enable-libcpp', make_options => 'DEBUG_SYMBOLS=1'}, + 'Debug+Asserts' => { configure_options => '--disable-optimized --enable-assertions --enable-libcpp' , make_options => 'DEBUG_SYMBOLS=1'}, + 'Release' => { configure_options => '--enable-optimized --disable-assertions --enable-libcpp' , make_options => ''}, + 'Release+Debug' => { configure_options => '--enable-optimized --disable-assertions --enable-libcpp' , make_options => 'DEBUG_SYMBOLS=1'}, ); our $llvm_config_href = undef; |

