diff options
author | tobtoht <tob@featherwallet.org> | 2024-02-12 19:31:15 +0100 |
---|---|---|
committer | tobtoht <tob@featherwallet.org> | 2024-02-12 19:31:15 +0100 |
commit | 538f19b0b706995380364e94a8eaf97095f928e3 (patch) | |
tree | cf1d432c291cadf53ad6e4e20db2df7be8fda1fa /contrib/depends/patches/android_ndk/api_definition.patch | |
parent | Merge pull request #9126 (diff) | |
download | monero-538f19b0b706995380364e94a8eaf97095f928e3.tar.xz |
depends: android_ndk: update to 18b
Diffstat (limited to 'contrib/depends/patches/android_ndk/api_definition.patch')
-rw-r--r-- | contrib/depends/patches/android_ndk/api_definition.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/contrib/depends/patches/android_ndk/api_definition.patch b/contrib/depends/patches/android_ndk/api_definition.patch new file mode 100644 index 000000000..82ef9bad3 --- /dev/null +++ b/contrib/depends/patches/android_ndk/api_definition.patch @@ -0,0 +1,15 @@ +CMake 3.10.2 compatibility, see: +https://github.com/Kitware/CMake/blob/c1e087a9d3af74299d7681c9f9de59e5977a1539/Modules/Platform/Android-Determine.cmake#L105 + +diff --git a/build/tools/make_standalone_toolchain.py b/build/tools/make_standalone_toolchain.py +index b8172b2..1984595 100755 +--- a/build/tools/make_standalone_toolchain.py ++++ b/build/tools/make_standalone_toolchain.py +@@ -208,6 +208,7 @@ def make_clang_scripts(install_dir, triple, api, windows): + + target = '-'.join([arch, 'none', os_name, env]) + common_flags = '-target {}{}'.format(target, api) ++ common_flags += ' -D__ANDROID_API__={}'.format(api) + + # We only need mstackrealign to fix issues on 32-bit x86 pre-24. After 24, + # this consumes an extra register unnecessarily, which can cause issues for |