mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
lib.systems.examples: update default android sdk to 33, ndk to 26
This commit is contained in:
parent
13effc435c
commit
56d1e7a41b
3 changed files with 11 additions and 7 deletions
|
@ -60,23 +60,23 @@ rec {
|
||||||
armv7a-android-prebuilt = {
|
armv7a-android-prebuilt = {
|
||||||
config = "armv7a-unknown-linux-androideabi";
|
config = "armv7a-unknown-linux-androideabi";
|
||||||
rust.rustcTarget = "armv7-linux-androideabi";
|
rust.rustcTarget = "armv7-linux-androideabi";
|
||||||
sdkVer = "28";
|
sdkVer = "33";
|
||||||
ndkVer = "24";
|
ndkVer = "26";
|
||||||
useAndroidPrebuilt = true;
|
useAndroidPrebuilt = true;
|
||||||
} // platforms.armv7a-android;
|
} // platforms.armv7a-android;
|
||||||
|
|
||||||
aarch64-android-prebuilt = {
|
aarch64-android-prebuilt = {
|
||||||
config = "aarch64-unknown-linux-android";
|
config = "aarch64-unknown-linux-android";
|
||||||
rust.rustcTarget = "aarch64-linux-android";
|
rust.rustcTarget = "aarch64-linux-android";
|
||||||
sdkVer = "28";
|
sdkVer = "33";
|
||||||
ndkVer = "24";
|
ndkVer = "26";
|
||||||
useAndroidPrebuilt = true;
|
useAndroidPrebuilt = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
aarch64-android = {
|
aarch64-android = {
|
||||||
config = "aarch64-unknown-linux-android";
|
config = "aarch64-unknown-linux-android";
|
||||||
sdkVer = "30";
|
sdkVer = "33";
|
||||||
ndkVer = "24";
|
ndkVer = "26";
|
||||||
libc = "bionic";
|
libc = "bionic";
|
||||||
useAndroidPrebuilt = false;
|
useAndroidPrebuilt = false;
|
||||||
useLLVM = true;
|
useLLVM = true;
|
||||||
|
|
|
@ -49,6 +49,10 @@
|
||||||
before changing the package to `pkgs.stalwart-mail` in
|
before changing the package to `pkgs.stalwart-mail` in
|
||||||
[`services.stalwart-mail.package`](#opt-services.stalwart-mail.package).
|
[`services.stalwart-mail.package`](#opt-services.stalwart-mail.package).
|
||||||
|
|
||||||
|
- `androidndkPkgs` has been updated to `androidndkPkgs_26`.
|
||||||
|
|
||||||
|
- Android NDK version 26 and SDK version 33 are now the default versions used for cross compilation to android.
|
||||||
|
|
||||||
- `haskell.lib.compose.justStaticExecutables` now disallows references to GHC in the
|
- `haskell.lib.compose.justStaticExecutables` now disallows references to GHC in the
|
||||||
output by default, to alert users to closure size issues caused by
|
output by default, to alert users to closure size issues caused by
|
||||||
[#164630](https://github.com/NixOS/nixpkgs/issues/164630). See ["Packaging
|
[#164630](https://github.com/NixOS/nixpkgs/issues/164630). See ["Packaging
|
||||||
|
|
|
@ -4079,7 +4079,7 @@ with pkgs;
|
||||||
|
|
||||||
androidenv = callPackage ../development/mobile/androidenv { };
|
androidenv = callPackage ../development/mobile/androidenv { };
|
||||||
|
|
||||||
androidndkPkgs = androidndkPkgs_21;
|
androidndkPkgs = androidndkPkgs_26;
|
||||||
androidndkPkgs_21 = (callPackage ../development/androidndk-pkgs {})."21";
|
androidndkPkgs_21 = (callPackage ../development/androidndk-pkgs {})."21";
|
||||||
androidndkPkgs_23b = (callPackage ../development/androidndk-pkgs {})."23b";
|
androidndkPkgs_23b = (callPackage ../development/androidndk-pkgs {})."23b";
|
||||||
androidndkPkgs_24 = (callPackage ../development/androidndk-pkgs {})."24";
|
androidndkPkgs_24 = (callPackage ../development/androidndk-pkgs {})."24";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue