@@ -97,6 +97,7 @@ pub fn parse_config(args: Vec<String> ) -> Config {
9797 optopt( "" , "gdb" , "path to GDB to use for GDB debuginfo tests" , "PATH" ) ,
9898 optopt( "" , "lldb-version" , "the version of LLDB used" , "VERSION STRING" ) ,
9999 optopt( "" , "llvm-version" , "the version of LLVM used" , "VERSION STRING" ) ,
100+ optflag( "" , "system-llvm" , "is LLVM the system LLVM" ) ,
100101 optopt( "" , "android-cross-path" , "Android NDK standalone path" , "PATH" ) ,
101102 optopt( "" , "adb-path" , "path to the android debugger" , "PATH" ) ,
102103 optopt( "" , "adb-test-dir" , "path to tests for the android debugger" , "PATH" ) ,
@@ -183,6 +184,7 @@ pub fn parse_config(args: Vec<String> ) -> Config {
183184 gdb_native_rust : gdb_native_rust,
184185 lldb_version : extract_lldb_version ( matches. opt_str ( "lldb-version" ) ) ,
185186 llvm_version : matches. opt_str ( "llvm-version" ) ,
187+ system_llvm : matches. opt_present ( "system-llvm" ) ,
186188 android_cross_path : opt_path ( matches, "android-cross-path" ) ,
187189 adb_path : opt_str2 ( matches. opt_str ( "adb-path" ) ) ,
188190 adb_test_dir : opt_str2 ( matches. opt_str ( "adb-test-dir" ) ) ,
0 commit comments