[clang] Pack relocations for Android API >= 28 (PR #117624)

2025-01-08 Thread Mike Hommey via cfe-commits
@@ -256,6 +256,24 @@ 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/issue

[clang] Pack relocations for Android API >= 28 (PR #117624)

2024-12-04 Thread Vitaly Buka via cfe-commits
vitalybuka wrote: breaks this bot https://lab.llvm.org/buildbot/#/builders/186/builds/4581 https://github.com/llvm/llvm-project/pull/117624 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-comm

[clang] Pack relocations for Android API >= 28 (PR #117624)

2024-12-04 Thread via cfe-commits
https://github.com/hiraditya closed https://github.com/llvm/llvm-project/pull/117624 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] Pack relocations for Android API >= 28 (PR #117624)

2024-12-04 Thread Dan Albert via cfe-commits
https://github.com/DanAlbert approved this pull request. https://github.com/llvm/llvm-project/pull/117624 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] Pack relocations for Android API >= 28 (PR #117624)

2024-12-03 Thread via cfe-commits
https://github.com/enh-google approved this pull request. https://github.com/llvm/llvm-project/pull/117624 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] Pack relocations for Android API >= 28 (PR #117624)

2024-12-02 Thread via cfe-commits
https://github.com/hiraditya updated https://github.com/llvm/llvm-project/pull/117624 >From 90e21e8b20a66fad23ac703f5ac121e608829446 Mon Sep 17 00:00:00 2001 From: AdityaK Date: Mon, 25 Nov 2024 11:05:53 -0800 Subject: [PATCH 1/2] Add no-rosegment by default for API < 29. Details in: https://g

[clang] Pack relocations for Android API >= 28 (PR #117624)

2024-12-02 Thread via cfe-commits
https://github.com/hiraditya edited https://github.com/llvm/llvm-project/pull/117624 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] Pack relocations for Android API >= 28 (PR #117624)

2024-12-02 Thread via cfe-commits
@@ -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/issue

[clang] Pack relocations for Android API > 28 (PR #117624)

2024-12-02 Thread via cfe-commits
@@ -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)) { enh-google wrote: i meant "A

[clang] Pack relocations for Android API > 28 (PR #117624)

2024-12-02 Thread via cfe-commits
https://github.com/hiraditya edited https://github.com/llvm/llvm-project/pull/117624 ___ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

[clang] Pack relocations for Android API > 28 (PR #117624)

2024-12-02 Thread via cfe-commits
@@ -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)) { hiraditya wrote: Edited the

[clang] Pack relocations for Android API >= 28 (PR #117624)

2024-12-02 Thread via cfe-commits
@@ -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)) { enh-google wrote: this says

[clang] Pack relocations for Android API >= 28 (PR #117624)

2024-11-25 Thread via cfe-commits
https://github.com/hiraditya updated https://github.com/llvm/llvm-project/pull/117624 >From ae0074af2125871b79b8fac7e2433fa56e60f4bd Mon Sep 17 00:00:00 2001 From: AdityaK Date: Mon, 25 Nov 2024 11:05:53 -0800 Subject: [PATCH 1/2] Add no-rosegment by default for API 29 and earlier. Details in:

[clang] Pack relocations for Android API >= 28 (PR #117624)

2024-11-25 Thread via cfe-commits
github-actions[bot] wrote: :warning: C/C++ code formatter, clang-format found issues in your code. :warning: You can test this locally with the following command: ``bash git-clang-format --diff b0ca543532d13fde8907853f6c9909ad7e68cd9f 0940f24788e9398dfbd8cc92d12d7c803693a172 --e

[clang] Pack relocations for Android API >= 28 (PR #117624)

2024-11-25 Thread via cfe-commits
llvmbot wrote: @llvm/pr-subscribers-clang-driver @llvm/pr-subscribers-clang Author: AdityaK (hiraditya) Changes Patch copied from: https://github.com/android/ndk/issues/909#issuecomment-649872696 Fixes: https://github.com/android/ndk/issues/909 --- Full diff: https://github.com/llvm/llv

[clang] Pack relocations for Android API >= 28 (PR #117624)

2024-11-25 Thread via cfe-commits
https://github.com/hiraditya created https://github.com/llvm/llvm-project/pull/117624 Patch copied from: https://github.com/android/ndk/issues/909#issuecomment-649872696 Fixes: https://github.com/android/ndk/issues/909 >From ae0074af2125871b79b8fac7e2433fa56e60f4bd Mon Sep 17 00:00:00 2001 Fr