summary refs log tree commit diff
path: root/lib/systems
diff options
context:
space:
mode:
authorJohn Ericson <John.Ericson@Obsidian.Systems>2018-02-27 18:36:48 -0500
committerJohn Ericson <John.Ericson@Obsidian.Systems>2018-05-11 19:17:35 -0400
commit827ef0914089e1a2bba140b49e1311eff28cc156 (patch)
tree763581d628e9226355a582d7ca7fac39f1a631c3 /lib/systems
parent28bacc2093a43c21f34a192397d2b2561a9fd29d (diff)
downloadnixlib-827ef0914089e1a2bba140b49e1311eff28cc156.tar
nixlib-827ef0914089e1a2bba140b49e1311eff28cc156.tar.gz
nixlib-827ef0914089e1a2bba140b49e1311eff28cc156.tar.bz2
nixlib-827ef0914089e1a2bba140b49e1311eff28cc156.tar.lz
nixlib-827ef0914089e1a2bba140b49e1311eff28cc156.tar.xz
nixlib-827ef0914089e1a2bba140b49e1311eff28cc156.tar.zst
nixlib-827ef0914089e1a2bba140b49e1311eff28cc156.zip
prebuilt android cc: Edit wrapper to pass the right -m flags for armv7a
Diffstat (limited to 'lib/systems')
-rw-r--r--lib/systems/examples.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/systems/examples.nix b/lib/systems/examples.nix
index 897ba448b951..9c43d9b1bbc7 100644
--- a/lib/systems/examples.nix
+++ b/lib/systems/examples.nix
@@ -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;
   };