Skip to content

Commit 0944ce6

Browse files
committed
[beta] Do not probe for -Cembed-bitcode
This flag didn't make it to the beta branch of rustc, so remove the probe here in Cargo. This is intended to be a very small patch to remove the probe, since the real support is updated on master and will replace this eventually anyway.
1 parent ebda506 commit 0944ce6

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

src/cargo/core/compiler/build_context/target_info.rs

+1-6
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,7 @@ impl TargetInfo {
105105
.args(&rustflags)
106106
.env_remove("RUSTC_LOG");
107107

108-
let mut embed_bitcode_test = process.clone();
109-
embed_bitcode_test.arg("-Cembed-bitcode");
110-
let supports_embed_bitcode = match kind {
111-
CompileKind::Host => Some(rustc.cached_output(&embed_bitcode_test).is_ok()),
112-
_ => None,
113-
};
108+
let supports_embed_bitcode = Some(false);
114109

115110
if let CompileKind::Target(target) = kind {
116111
process.arg("--target").arg(target.rustc_target());

0 commit comments

Comments
 (0)