We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8201815 commit d3b1798Copy full SHA for d3b1798
1 file changed
crates/cuda_builder/src/lib.rs
@@ -809,6 +809,9 @@ fn invoke_rustc(builder: &CudaBuilder) -> Result<PathBuf, CudaBuilderError> {
809
810
let cargo_encoded_rustflags = join_checking_for_separators(rustflags, "\x1f");
811
812
+ // HACK(fee1-dead): didn't seem like there was a better way to disable f16/f128s, the `target_config`` did not work for some reason.
813
+ cargo.env("CARGO_FEATURE_NO_F16_F128", "1");
814
+
815
let build = cargo
816
.stderr(Stdio::inherit())
817
.current_dir(&builder.path_to_crate)
0 commit comments