We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60669a9 commit fe7e2ceCopy full SHA for fe7e2ce
src/lib.rs
@@ -1800,13 +1800,7 @@ impl Build {
1800
cmd.args(self.asm_flags.iter().map(std::ops::Deref::deref));
1801
}
1802
1803
- if compiler.supports_path_delimiter()
1804
- && !is_assembler_msvc
1805
- && matches!(
1806
- compiler.family,
1807
- ToolFamily::Clang { zig_cc: false } | ToolFamily::Msvc { clang_cl: true }
1808
- )
1809
- {
+ if compiler.supports_path_delimiter() && !is_assembler_msvc {
1810
// #513: For `clang-cl`, separate flags/options from the input file.
1811
// When cross-compiling macOS -> Windows, this avoids interpreting
1812
// common `/Users/...` paths as the `/U` flag and triggering
0 commit comments