Skip to content

Commit fd4cec0

Browse files
authored
Rollup merge of #67023 - jethrogb:jb/bootstrap-target-linker, r=alexcrichton
SGX: Fix target linker used by bootstrap Bootstrap, for some reason, overrides the target linker. This is not correct for x86_64-fortanix-unknown-sgx. Add such targets to the list of exceptions. r? @alexcrichton
2 parents 0df1609 + 22d9f20 commit fd4cec0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/bootstrap/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -810,6 +810,7 @@ impl Build {
810810
!target.contains("emscripten") &&
811811
!target.contains("wasm32") &&
812812
!target.contains("nvptx") &&
813+
!target.contains("fortanix") &&
813814
!target.contains("fuchsia") {
814815
Some(self.cc(target))
815816
} else {

0 commit comments

Comments
 (0)