File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -441,6 +441,7 @@ def download_toolchain(self):
441441
442442 self .fix_bin_or_dylib ("{}/bin/rustc" .format (bin_root ))
443443 self .fix_bin_or_dylib ("{}/bin/rustdoc" .format (bin_root ))
444+ self .fix_bin_or_dylib ("{}/libexec/rust-analyzer-proc-macro-srv" .format (bin_root ))
444445 lib_dir = "{}/lib" .format (bin_root )
445446 for lib in os .listdir (lib_dir ):
446447 if lib .endswith (".so" ):
Original file line number Diff line number Diff line change @@ -360,6 +360,7 @@ impl Config {
360360
361361 self . fix_bin_or_dylib ( & bin_root. join ( "bin" ) . join ( "rustc" ) ) ;
362362 self . fix_bin_or_dylib ( & bin_root. join ( "bin" ) . join ( "rustdoc" ) ) ;
363+ self . fix_bin_or_dylib ( & bin_root. join ( "libexec" ) . join ( "rust-analyzer-proc-macro-srv" ) ) ;
363364 let lib_dir = bin_root. join ( "lib" ) ;
364365 for lib in t ! ( fs:: read_dir( & lib_dir) , lib_dir. display( ) . to_string( ) ) {
365366 let lib = t ! ( lib) ;
You can’t perform that action at this time.
0 commit comments