@@ -46,7 +46,6 @@ pub fn parse_config(args: Vec<String>) -> Config {
46
46
. reqopt ( "" , "run-lib-path" , "path to target shared libraries" , "PATH" )
47
47
. reqopt ( "" , "rustc-path" , "path to rustc to use for compiling" , "PATH" )
48
48
. optopt ( "" , "rustdoc-path" , "path to rustdoc to use for compiling" , "PATH" )
49
- . optopt ( "" , "rust-demangler-path" , "path to rust-demangler to use in tests" , "PATH" )
50
49
. optopt ( "" , "coverage-dump-path" , "path to coverage-dump to use in tests" , "PATH" )
51
50
. reqopt ( "" , "python" , "path to python to use for doc tests" , "PATH" )
52
51
. optopt ( "" , "jsondocck-path" , "path to jsondocck to use for doc tests" , "PATH" )
@@ -232,7 +231,6 @@ pub fn parse_config(args: Vec<String>) -> Config {
232
231
run_lib_path : make_absolute ( opt_path ( matches, "run-lib-path" ) ) ,
233
232
rustc_path : opt_path ( matches, "rustc-path" ) ,
234
233
rustdoc_path : matches. opt_str ( "rustdoc-path" ) . map ( PathBuf :: from) ,
235
- rust_demangler_path : matches. opt_str ( "rust-demangler-path" ) . map ( PathBuf :: from) ,
236
234
coverage_dump_path : matches. opt_str ( "coverage-dump-path" ) . map ( PathBuf :: from) ,
237
235
python : matches. opt_str ( "python" ) . unwrap ( ) ,
238
236
jsondocck_path : matches. opt_str ( "jsondocck-path" ) ,
@@ -337,7 +335,6 @@ pub fn log_config(config: &Config) {
337
335
logv ( c, format ! ( "run_lib_path: {:?}" , config. run_lib_path) ) ;
338
336
logv ( c, format ! ( "rustc_path: {:?}" , config. rustc_path. display( ) ) ) ;
339
337
logv ( c, format ! ( "rustdoc_path: {:?}" , config. rustdoc_path) ) ;
340
- logv ( c, format ! ( "rust_demangler_path: {:?}" , config. rust_demangler_path) ) ;
341
338
logv ( c, format ! ( "src_base: {:?}" , config. src_base. display( ) ) ) ;
342
339
logv ( c, format ! ( "build_base: {:?}" , config. build_base. display( ) ) ) ;
343
340
logv ( c, format ! ( "stage_id: {}" , config. stage_id) ) ;
0 commit comments