File tree 2 files changed +2
-0
lines changed
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):
441
441
442
442
self .fix_bin_or_dylib ("{}/bin/rustc" .format (bin_root ))
443
443
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 ))
444
445
lib_dir = "{}/lib" .format (bin_root )
445
446
for lib in os .listdir (lib_dir ):
446
447
if lib .endswith (".so" ):
Original file line number Diff line number Diff line change @@ -360,6 +360,7 @@ impl Config {
360
360
361
361
self . fix_bin_or_dylib ( & bin_root. join ( "bin" ) . join ( "rustc" ) ) ;
362
362
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" ) ) ;
363
364
let lib_dir = bin_root. join ( "lib" ) ;
364
365
for lib in t ! ( fs:: read_dir( & lib_dir) , lib_dir. display( ) . to_string( ) ) {
365
366
let lib = t ! ( lib) ;
You can’t perform that action at this time.
0 commit comments