Merge "Switch platform-NDK unwinder to LLVM libunwind.a prebuilt" am: 368b7e6a13
am: 1ef79d5171
Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1554719 Change-Id: Ie42e06703b149a4291777fea071840e3e17e5d67
This commit is contained in:
commit
6f23a7332e
|
@ -188,12 +188,7 @@ func (stl *stl) deps(ctx BaseModuleContext, deps Deps) Deps {
|
|||
if needsLibAndroidSupport(ctx) {
|
||||
deps.StaticLibs = append(deps.StaticLibs, "ndk_libandroid_support")
|
||||
}
|
||||
// TODO: Switch the NDK over to the LLVM unwinder for non-arm32 architectures.
|
||||
if ctx.Arch().ArchType == android.Arm {
|
||||
deps.StaticLibs = append(deps.StaticLibs, "ndk_libunwind")
|
||||
} else {
|
||||
deps.StaticLibs = append(deps.StaticLibs, "libgcc_stripped")
|
||||
}
|
||||
deps.StaticLibs = append(deps.StaticLibs, "ndk_libunwind")
|
||||
default:
|
||||
panic(fmt.Errorf("Unknown stl: %q", stl.Properties.SelectedStl))
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue