File tree 1 file changed +0
-12
lines changed
src/bootstrap/src/core/build_steps
1 file changed +0
-12
lines changed Original file line number Diff line number Diff line change @@ -2273,9 +2273,6 @@ impl Step for RustDev {
2273
2273
tarball. permit_symlinks ( true ) ;
2274
2274
2275
2275
builder. ensure ( crate :: core:: build_steps:: llvm:: Llvm { target } ) ;
2276
- if target. contains ( "linux" ) && target. contains ( "x86_64" ) {
2277
- builder. ensure ( crate :: core:: build_steps:: gcc:: Gcc { target } ) ;
2278
- }
2279
2276
2280
2277
let src_bindir = builder. llvm_out ( target) . join ( "bin" ) ;
2281
2278
// If updating this, you likely want to change
@@ -2311,15 +2308,6 @@ impl Step for RustDev {
2311
2308
// just broadly useful to be able to link against the bundled LLVM.
2312
2309
tarball. add_dir ( builder. llvm_out ( target) . join ( "include" ) , "include" ) ;
2313
2310
2314
- let libgccjit_path = builder. gcc_out ( target) . join ( "install/lib/libgccjit.so" ) ;
2315
- if libgccjit_path. exists ( ) {
2316
- tarball. add_dir ( libgccjit_path, "libgccjit.so" ) ;
2317
- tarball. add_dir (
2318
- builder. gcc_out ( target) . join ( "install/lib/libgccjit.so.0" ) ,
2319
- "libgccjit.so.0" ,
2320
- ) ;
2321
- }
2322
-
2323
2311
// Copy libLLVM.so to the target lib dir as well, so the RPATH like
2324
2312
// `$ORIGIN/../lib` can find it. It may also be used as a dependency
2325
2313
// of `rustc-dev` to support the inherited `-lLLVM` when using the
You can’t perform that action at this time.
0 commit comments