@@ -46,7 +46,6 @@ pub fn parse_config(args: Vec<String>) -> Config {
4646 . reqopt ( "" , "run-lib-path" , "path to target shared libraries" , "PATH" )
4747 . reqopt ( "" , "rustc-path" , "path to rustc to use for compiling" , "PATH" )
4848 . 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" )
5049 . optopt ( "" , "coverage-dump-path" , "path to coverage-dump to use in tests" , "PATH" )
5150 . reqopt ( "" , "python" , "path to python to use for doc tests" , "PATH" )
5251 . optopt ( "" , "jsondocck-path" , "path to jsondocck to use for doc tests" , "PATH" )
@@ -232,7 +231,6 @@ pub fn parse_config(args: Vec<String>) -> Config {
232231 run_lib_path : make_absolute ( opt_path ( matches, "run-lib-path" ) ) ,
233232 rustc_path : opt_path ( matches, "rustc-path" ) ,
234233 rustdoc_path : matches. opt_str ( "rustdoc-path" ) . map ( PathBuf :: from) ,
235- rust_demangler_path : matches. opt_str ( "rust-demangler-path" ) . map ( PathBuf :: from) ,
236234 coverage_dump_path : matches. opt_str ( "coverage-dump-path" ) . map ( PathBuf :: from) ,
237235 python : matches. opt_str ( "python" ) . unwrap ( ) ,
238236 jsondocck_path : matches. opt_str ( "jsondocck-path" ) ,
@@ -337,7 +335,6 @@ pub fn log_config(config: &Config) {
337335 logv ( c, format ! ( "run_lib_path: {:?}" , config. run_lib_path) ) ;
338336 logv ( c, format ! ( "rustc_path: {:?}" , config. rustc_path. display( ) ) ) ;
339337 logv ( c, format ! ( "rustdoc_path: {:?}" , config. rustdoc_path) ) ;
340- logv ( c, format ! ( "rust_demangler_path: {:?}" , config. rust_demangler_path) ) ;
341338 logv ( c, format ! ( "src_base: {:?}" , config. src_base. display( ) ) ) ;
342339 logv ( c, format ! ( "build_base: {:?}" , config. build_base. display( ) ) ) ;
343340 logv ( c, format ! ( "stage_id: {}" , config. stage_id) ) ;
0 commit comments