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 @@ -1582,18 +1582,15 @@ impl<'test> TestCx<'test> {
1582
1582
None
1583
1583
} else if self . config . target . contains ( "cloudabi" )
1584
1584
|| self . config . target . contains ( "emscripten" )
1585
- || ( self . config . target . contains ( "musl" ) && !aux_props. force_host )
1586
1585
|| self . config . target . contains ( "wasm32" )
1587
1586
{
1588
1587
// We primarily compile all auxiliary libraries as dynamic libraries
1589
1588
// to avoid code size bloat and large binaries as much as possible
1590
1589
// for the test suite (otherwise including libstd statically in all
1591
1590
// executables takes up quite a bit of space).
1592
1591
//
1593
- // For targets like MUSL or Emscripten, however, there is no support for
1594
- // dynamic libraries so we just go back to building a normal library. Note,
1595
- // however, that for MUSL if the library is built with `force_host` then
1596
- // it's ok to be a dylib as the host should always support dylibs.
1592
+ // For targets like Emscripten, however, there is no support for
1593
+ // dynamic libraries so we just go back to building a normal library.
1597
1594
Some ( "lib" )
1598
1595
} else {
1599
1596
Some ( "dylib" )
You can’t perform that action at this time.
0 commit comments