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 55dab7c commit 665d667Copy full SHA for 665d667
src/tools/compiletest/src/runtest.rs
@@ -2529,7 +2529,7 @@ impl<'test> TestCx<'test> {
2529
.env("IS_WINDOWS", "1")
2530
.env("MSVC_LIB", format!("'{}' -nologo", lib.display()))
2531
.env("CC", format!("'{}' {}", self.config.cc, cflags))
2532
- .env("CXX", &self.config.cxx);
+ .env("CXX", format!("'{}'", &self.config.cxx));
2533
} else {
2534
cmd.env("CC", format!("{} {}", self.config.cc, self.config.cflags))
2535
.env("CXX", format!("{} {}", self.config.cxx, self.config.cflags))
0 commit comments