File tree 1 file changed +2
-5
lines changed
src/tools/compiletest/src
1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -1507,18 +1507,15 @@ impl<'test> TestCx<'test> {
1507
1507
None
1508
1508
} else if self . config . target . contains ( "cloudabi" )
1509
1509
|| self . config . target . contains ( "emscripten" )
1510
- || ( self . config . target . contains ( "musl" ) && !aux_props. force_host )
1511
1510
|| self . config . target . contains ( "wasm32" )
1512
1511
{
1513
1512
// We primarily compile all auxiliary libraries as dynamic libraries
1514
1513
// to avoid code size bloat and large binaries as much as possible
1515
1514
// for the test suite (otherwise including libstd statically in all
1516
1515
// executables takes up quite a bit of space).
1517
1516
//
1518
- // For targets like MUSL or Emscripten, however, there is no support for
1519
- // dynamic libraries so we just go back to building a normal library. Note,
1520
- // however, that for MUSL if the library is built with `force_host` then
1521
- // it's ok to be a dylib as the host should always support dylibs.
1517
+ // For targets like Emscripten, however, there is no support for
1518
+ // dynamic libraries so we just go back to building a normal library.
1522
1519
Some ( "lib" )
1523
1520
} else {
1524
1521
Some ( "dylib" )
You can’t perform that action at this time.
0 commit comments