File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed
src/tools/compiletest/src Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -1602,18 +1602,15 @@ impl<'test> TestCx<'test> {
1602
1602
None
1603
1603
} else if self . config . target . contains ( "cloudabi" )
1604
1604
|| self . config . target . contains ( "emscripten" )
1605
- || ( self . config . target . contains ( "musl" ) && !aux_props. force_host )
1606
1605
|| self . config . target . contains ( "wasm32" )
1607
1606
{
1608
1607
// We primarily compile all auxiliary libraries as dynamic libraries
1609
1608
// to avoid code size bloat and large binaries as much as possible
1610
1609
// for the test suite (otherwise including libstd statically in all
1611
1610
// executables takes up quite a bit of space).
1612
1611
//
1613
- // For targets like MUSL or Emscripten, however, there is no support for
1614
- // dynamic libraries so we just go back to building a normal library. Note,
1615
- // however, that for MUSL if the library is built with `force_host` then
1616
- // it's ok to be a dylib as the host should always support dylibs.
1612
+ // For targets like Emscripten, however, there is no support for
1613
+ // dynamic libraries so we just go back to building a normal library.
1617
1614
Some ( "lib" )
1618
1615
} else {
1619
1616
Some ( "dylib" )
You can’t perform that action at this time.
0 commit comments