android: Use NDK 17 for aarch32

This commit is contained in:
Matthew Bauer
2018-06-22 09:33:25 -04:00
parent fc048073e6
commit cf09ffe9aa
3 changed files with 5 additions and 7 deletions
+1 -3
View File
@@ -41,9 +41,7 @@ in lib.init bootStages ++ [
targetPlatform = crossSystem;
cc = if crossSystem.useiOSPrebuilt or false
then buildPackages.darwin.iosSdkPkgs.clang
else if (crossSystem.useAndroidPrebuilt && crossSystem.is32bit)
then buildPackages.androidenv.androidndkPkgs_10e.gcc
else if (crossSystem.useAndroidPrebuilt && crossSystem.is64bit)
else if crossSystem.useAndroidPrebuilt
then buildPackages.androidenv.androidndkPkgs.gcc
else buildPackages.gcc;
};