prebuilt android cc: Edit wrapper to pass the right -m flags for armv7a

(cherry picked from commit 827ef09140)
This commit is contained in:
John Ericson
2018-05-12 15:16:16 -04:00
parent e3f6c6d18d
commit 6f40d18d44
2 changed files with 32 additions and 4 deletions
+3
View File
@@ -31,18 +31,21 @@ rec {
armv5te-android-prebuilt = rec {
config = "armv5tel-unknown-linux-androideabi";
sdkVer = "21";
platform = platforms.armv5te-android;
useAndroidPrebuilt = true;
};
armv7a-android-prebuilt = rec {
config = "armv7a-unknown-linux-androideabi";
sdkVer = "21";
platform = platforms.armv7a-android;
useAndroidPrebuilt = true;
};
aarch64-android-prebuilt = rec {
config = "aarch64-unknown-linux-android";
sdkVer = "21";
platform = platforms.aarch64-multiplatform;
useAndroidPrebuilt = true;
};