add crt-static for android

This commit is contained in:
Bryanskiy
2022-07-16 19:33:54 +03:00
parent 6d3f1beae1
commit 874ee5bede
6 changed files with 29 additions and 11 deletions

View File

@@ -10,6 +10,6 @@ pub fn opts() -> TargetOptions {
// for context. (At that time, there was no `-C force-unwind-tables`, so the only solution
// was to always emit `uwtable`).
base.default_uwtable = true;
base.crt_static_respected = false;
base.crt_static_respected = true;
base
}