termux-packages/root-packages/frida-server/setup-env.sh.patch

34 lines
1.1 KiB
Diff
Raw Normal View History

--- ./releng/setup-env.sh.orig 2021-03-21 14:30:27.958066126 +0000
+++ ./releng/setup-env.sh 2021-03-28 13:17:51.665477424 +0000
@@ -628,26 +628,26 @@
host_cflags=""
case $host_arch in
x86)
2019-05-19 09:06:07 +02:00
- android_api=18
+ android_api=24
2019-08-08 21:27:13 +02:00
host_compiler_triplet="i686-linux-android"
host_arch_flags="-march=pentium4"
host_cflags="-mfpmath=sse -mstackrealign"
2018-09-29 18:33:27 +02:00
host_ldflags="-fuse-ld=gold"
2019-05-19 09:06:07 +02:00
;;
x86_64)
- android_api=21
+ android_api=24
2019-08-08 21:27:13 +02:00
host_compiler_triplet="x86_64-linux-android"
2019-05-19 09:06:07 +02:00
host_ldflags="-fuse-ld=gold -Wl,--icf=all"
;;
arm)
2019-05-19 09:06:07 +02:00
- android_api=18
+ android_api=24
2019-08-08 21:27:13 +02:00
host_compiler_triplet="armv7a-linux-androideabi"
host_tooltriplet="arm-linux-androideabi"
2018-09-29 18:33:27 +02:00
host_arch_flags="-march=armv7-a -mfloat-abi=softfp -mfpu=vfpv3-d16"
2019-05-19 09:06:07 +02:00
host_ldflags="-fuse-ld=gold -Wl,--icf=all -Wl,--fix-cortex-a8"
;;
arm64)
- android_api=21
+ android_api=24
2019-08-08 21:27:13 +02:00
host_compiler_triplet="aarch64-linux-android"
2019-05-19 09:06:07 +02:00
host_ldflags="-fuse-ld=gold -Wl,--icf=all"
;;