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 3f88091 commit 04ce26aCopy full SHA for 04ce26a
src/tools/compiletest/src/runtest.rs
@@ -1368,9 +1368,10 @@ impl<'test> TestCx<'test> {
1368
1369
let crate_type = if aux_props.no_prefer_dynamic {
1370
None
1371
- } else if (self.config.target.contains("musl") && !aux_props.force_host)
1372
- || self.config.target.contains("wasm32")
+ } else if self.config.target.contains("cloudabi")
1373
|| self.config.target.contains("emscripten")
+ || (self.config.target.contains("musl") && !aux_props.force_host)
1374
+ || self.config.target.contains("wasm32")
1375
{
1376
// We primarily compile all auxiliary libraries as dynamic libraries
1377
// to avoid code size bloat and large binaries as much as possible
0 commit comments