@@ -97,6 +97,7 @@ pub fn parse_config(args: Vec<String> ) -> Config {
97
97
optopt( "" , "gdb" , "path to GDB to use for GDB debuginfo tests" , "PATH" ) ,
98
98
optopt( "" , "lldb-version" , "the version of LLDB used" , "VERSION STRING" ) ,
99
99
optopt( "" , "llvm-version" , "the version of LLVM used" , "VERSION STRING" ) ,
100
+ optflag( "" , "system-llvm" , "is LLVM the system LLVM" ) ,
100
101
optopt( "" , "android-cross-path" , "Android NDK standalone path" , "PATH" ) ,
101
102
optopt( "" , "adb-path" , "path to the android debugger" , "PATH" ) ,
102
103
optopt( "" , "adb-test-dir" , "path to tests for the android debugger" , "PATH" ) ,
@@ -183,6 +184,7 @@ pub fn parse_config(args: Vec<String> ) -> Config {
183
184
gdb_native_rust : gdb_native_rust,
184
185
lldb_version : extract_lldb_version ( matches. opt_str ( "lldb-version" ) ) ,
185
186
llvm_version : matches. opt_str ( "llvm-version" ) ,
187
+ system_llvm : matches. opt_present ( "system-llvm" ) ,
186
188
android_cross_path : opt_path ( matches, "android-cross-path" ) ,
187
189
adb_path : opt_str2 ( matches. opt_str ( "adb-path" ) ) ,
188
190
adb_test_dir : opt_str2 ( matches. opt_str ( "adb-test-dir" ) ) ,
0 commit comments