We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd94bf5 commit 490d050Copy full SHA for 490d050
src/tools/compiletest/src/runtest.rs
@@ -2491,7 +2491,7 @@ impl<'test> TestCx<'test> {
2491
.env("IS_WINDOWS", "1")
2492
.env("MSVC_LIB", format!("'{}' -nologo", lib.display()))
2493
.env("CC", format!("'{}' {}", self.config.cc, cflags))
2494
- .env("CXX", &self.config.cxx);
+ .env("CXX", format!("'{}'", &self.config.cxx));
2495
} else {
2496
cmd.env("CC", format!("{} {}", self.config.cc, self.config.cflags))
2497
.env("CXX", format!("{} {}", self.config.cxx, self.config.cflags))
0 commit comments