1
Fork 0

Allow not emitting uwtable on Android

This commit is contained in:
hyd-dev 2021-03-23 02:38:30 +08:00
parent 2b8fbe6b0b
commit f900ee331d
No known key found for this signature in database
GPG key ID: 74FA7FD5B8DA14B8
5 changed files with 34 additions and 2 deletions

View file

@ -863,7 +863,7 @@ impl Session {
} else if self.target.requires_uwtable {
true
} else {
self.opts.cg.force_unwind_tables.unwrap_or(false)
self.opts.cg.force_unwind_tables.unwrap_or(self.target.default_uwtable)
}
}