Revert "build(dubp): build for armv7 with old arm target"

This reverts commit 0ed59cba2e.
This commit is contained in:
librelois 2021-02-22 00:10:39 +01:00
parent 779ffbc579
commit 131a055926
2 changed files with 4 additions and 4 deletions

View File

@ -159,7 +159,7 @@ run_task = "android-build"
[tasks.android-armv7] [tasks.android-armv7]
private = true private = true
condition = { env_true = ["DEV"] } condition = { env_true = ["DEV"] }
env = { ANDROID_TARGET = "arm-linux-androideabi" } env = { ANDROID_TARGET = "armv7-linux-androideabi" }
run_task = "android-build" run_task = "android-build"
[tasks.android-i686] [tasks.android-i686]
@ -183,7 +183,7 @@ run_task = "android-build-release"
[tasks.android-armv7-release] [tasks.android-armv7-release]
private = true private = true
condition = { env_true = ["RELEASE"] } condition = { env_true = ["RELEASE"] }
env = { ANDROID_TARGET = "arm-linux-androideabi" } env = { ANDROID_TARGET = "armv7-linux-androideabi" }
run_task = "android-build-release" run_task = "android-build-release"
[tasks.android-i686-release] [tasks.android-i686-release]
@ -227,7 +227,7 @@ run_task = "copy-lib"
[tasks.post-android-armv7] [tasks.post-android-armv7]
private = true private = true
env = { ANDROID_TARGET = "arm-linux-androideabi", JNI_LIB_DIR = "armeabi-v7a" } env = { ANDROID_TARGET = "armv7-linux-androideabi", JNI_LIB_DIR = "armeabi-v7a" }
run_task = "copy-lib" run_task = "copy-lib"
[tasks.post-android-i686] [tasks.post-android-i686]

View File

@ -21,7 +21,7 @@ For example:
You will also need to add targets for all Android architectures: You will also need to add targets for all Android architectures:
```sh ```sh
rustup target add aarch64-linux-android arm-linux-androideabi x86_64-linux-android i686-linux-android rustup target add aarch64-linux-android armv7-linux-androideabi x86_64-linux-android i686-linux-android
``` ```
If you develop on mac, you can also add targets for iOS: If you develop on mac, you can also add targets for iOS: