From 22d9f20f606eb69c5d2eac345dc4e5dfe36d27cc Mon Sep 17 00:00:00 2001 From: Jethro Beekman Date: Wed, 4 Dec 2019 16:02:28 +0100 Subject: [PATCH] SGX: Fix target linker used by bootstrap --- src/bootstrap/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bootstrap/lib.rs b/src/bootstrap/lib.rs index 39d7ea922bced..7ea2bb126a641 100644 --- a/src/bootstrap/lib.rs +++ b/src/bootstrap/lib.rs @@ -810,6 +810,7 @@ impl Build { !target.contains("emscripten") && !target.contains("wasm32") && !target.contains("nvptx") && + !target.contains("fortanix") && !target.contains("fuchsia") { Some(self.cc(target)) } else {