[Lldb-commits] [lldb] r188015 - Ensure that we don't build LLVM with a dependency

Sean Callanan scallanan at apple.com
Thu Aug 8 14:30:52 PDT 2013


Author: spyffe
Date: Thu Aug  8 16:30:51 2013
New Revision: 188015

URL: http://llvm.org/viewvc/llvm-project?rev=188015&view=rev
Log:
Ensure that we don't build LLVM with a dependency
on curses.

Modified:
    lldb/trunk/scripts/build-llvm.pl

Modified: lldb/trunk/scripts/build-llvm.pl
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/scripts/build-llvm.pl?rev=188015&r1=188014&r2=188015&view=diff
==============================================================================
--- lldb/trunk/scripts/build-llvm.pl (original)
+++ lldb/trunk/scripts/build-llvm.pl Thu Aug  8 16:30:51 2013
@@ -30,6 +30,8 @@ my $os_release = 11;
 
 my $original_env_path = $ENV{PATH};
 
+my $common_configure_options = "--disable-curses";
+
 our %llvm_config_info = (
     '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'},
@@ -239,7 +241,7 @@ sub build_llvm
         {
             # Build llvm and clang
             print "Configuring clang ($arch) in '$llvm_dstroot_arch'...\n";
-            my $lldb_configuration_options = "--enable-targets=x86_64,arm $llvm_config_href->{configure_options}";
+            my $lldb_configuration_options = "--enable-targets=x86_64,arm $common_configure_options $llvm_config_href->{configure_options}";
 
             if ($is_arm)
             {





More information about the lldb-commits mailing list