[clang] Pack relocations for Android API >= 28 (PR #117624)
via cfe-commits
cfe-commits at lists.llvm.org
Mon Dec 2 14:22:51 PST 2024
================
@@ -256,6 +256,14 @@ Linux::Linux(const Driver &D, const llvm::Triple &Triple, const ArgList &Args)
ExtraOpts.push_back("-z");
ExtraOpts.push_back("max-page-size=16384");
}
+ if (Triple.isAndroidVersionLT(29)) {
+ // https://github.com/android/ndk/issues/1196
+ // The unwinder used by the crash handler on versions of Android prior to
----------------
enh-google wrote:
ah, sounds like the commit message is wrong then? (or at least "outvoted" :-) )
https://github.com/llvm/llvm-project/pull/117624
More information about the cfe-commits
mailing list