1
Fork 0

Rollup merge of #99421 - Bryanskiy:android-crt-static, r=petrochenkov

add crt-static for android
This commit is contained in:
Matthias Krüger 2022-08-11 22:52:58 +02:00 committed by GitHub
commit 6737549aaf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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
}