Skip to content

Commit de0f0df

Browse files
committed
Auto merge of #50709 - alexcrichton:revert-musl, r=sfackler
Revert #50105 until regression is fixed Discovered at rust-lang/rust#50105 (comment) it looks like this caused a regression with i686 musl, so let's revert in the meantime while a fix is worked out
2 parents bf6c777 + b94a7ab commit de0f0df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/runtest.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2502,7 +2502,7 @@ impl<'test> TestCx<'test> {
25022502
.env("IS_WINDOWS", "1")
25032503
.env("MSVC_LIB", format!("'{}' -nologo", lib.display()))
25042504
.env("CC", format!("'{}' {}", self.config.cc, cflags))
2505-
.env("CXX", format!("'{}'", &self.config.cxx));
2505+
.env("CXX", &self.config.cxx);
25062506
} else {
25072507
cmd.env("CC", format!("{} {}", self.config.cc, self.config.cflags))
25082508
.env("CXX", format!("{} {}", self.config.cxx, self.config.cflags))

0 commit comments

Comments
 (0)