Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 98a1b899455f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3fb09ac1de80
Choose a head ref
  • 4 commits
  • 4 files changed
  • 2 contributors

Commits on May 11, 2018

  1. lib/systems/inspect: Fix after assertions

    Function are never equal in Nix, so we need to filter out this attribute
    in ABIs.
    Ericson2314 committed May 11, 2018
    Copy the full SHA
    f4de669 View commit details
  2. lib/systems: Add assertion to "android" ABI

    This is analogous to the GNU assertion.
    Ericson2314 committed May 11, 2018
    Copy the full SHA
    28bacc2 View commit details
  3. Copy the full SHA
    827ef09 View commit details
  4. Merge pull request #40387 from obsidiansystems/android-32

    android cross: Support 32-bit too
    Ericson2314 authored May 11, 2018
    Copy the full SHA
    3fb09ac View commit details
Showing with 45 additions and 6 deletions.
  1. +3 −0 lib/systems/examples.nix
  2. +3 −0 lib/systems/inspect.nix
  3. +10 −2 lib/systems/parse.nix
  4. +29 −4 pkgs/development/mobile/androidenv/androidndk-pkgs.nix
3 changes: 3 additions & 0 deletions lib/systems/examples.nix
Original file line number Diff line number Diff line change
@@ -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;
};
3 changes: 3 additions & 0 deletions lib/systems/inspect.nix
Original file line number Diff line number Diff line change
@@ -3,6 +3,9 @@ with import ./parse.nix { inherit lib; };
with lib.attrsets;
with lib.lists;

let abis_ = abis; in
let abis = lib.mapAttrs (_: abi: builtins.removeAttrs abi [ "assertions" ]) abis_; in

rec {
patterns = rec {
isi686 = { cpu = cpuTypes.i686; };
12 changes: 10 additions & 2 deletions lib/systems/parse.nix
Original file line number Diff line number Diff line change
@@ -199,8 +199,16 @@ rec {
msvc = {};
eabi = {};

androideabi = {};
android = {};
androideabi = { float = "hard"; };
android = {
assertions = [
{ assertion = platform: !platform.isAarch32;
message = ''
The "android" ABI is not for 32-bit ARM. Use "androideabi" instead.
'';
}
];
};

gnueabi = { float = "soft"; };
gnueabihf = { float = "hard"; };
33 changes: 29 additions & 4 deletions pkgs/development/mobile/androidenv/androidndk-pkgs.nix
Original file line number Diff line number Diff line change
@@ -15,7 +15,12 @@ let
"x86_64-unknown-linux-gnu" = {
double = "linux-x86_64";
};
"arm-unknown-linux-androideabi" = {
"armv5tel-unknown-linux-androideabi" = {
arch = "arm";
triple = "arm-linux-androideabi";
gccVer = "4.8";
};
"armv7a-unknown-linux-androideabi" = {
arch = "arm";
triple = "arm-linux-androideabi";
gccVer = "4.8";
@@ -59,9 +64,29 @@ rec {
cc = binaries;
bintools = binutils;
libc = targetAndroidndkPkgs.libraries;
extraBuildCommands =
extraBuildCommands = lib.optionalString targetPlatform.isAarch32 (let
p = targetPlatform.platform.gcc or {};
float = p.float or (targetPlatform.parsed.abi.float or null);
flags = lib.concatLists [
(lib.optional (p ? arch) "-march=${p.arch}")
(lib.optional (p ? cpu) "-mcpu=${p.cpu}")
(lib.optional (p ? abi) "-mabi=${p.abi}")
(lib.optional (p ? fpu) "-mfpu=${p.fpu}")
(lib.optional (float != null) "-mfloat=${float}")
(lib.optional (p ? float-abi) "-mfloat-abi=${p.float-abi}")
(lib.optional (p ? mode) "-mmode=${p.mode}")
];
in ''
sed -E -i \
$out/bin/${targetPlatform.config}-cc \
$out/bin/${targetPlatform.config}-c++ \
$out/bin/${targetPlatform.config}-gcc \
$out/bin/${targetPlatform.config}-g++ \
-e '130i extraBefore+=(-Wl,--fix-cortex-a8)' \
-e 's|^(extraBefore=)\(\)$|\1(${builtins.toString flags})|'
'')
# GCC 4.9 is the first relase with "-fstack-protector"
lib.optionalString (lib.versionOlder targetInfo.gccVer "4.9") ''
+ lib.optionalString (lib.versionOlder targetInfo.gccVer "4.9") ''
sed -E \
-i $out/nix-support/add-hardening.sh \
-e 's|(-fstack-protector)-strong|\1|g'
@@ -76,7 +101,7 @@ rec {
libraries = {
name = "bionic-prebuilt";
type = "derivation";
outPath = "${buildAndroidndk}/libexec/${buildAndroidndk.name}/platforms/android-21/arch-${hostInfo.arch}/usr/";
outPath = "${buildAndroidndk}/libexec/${buildAndroidndk.name}/platforms/android-${hostPlatform.sdkVer}/arch-${hostInfo.arch}/usr/";
drvPath = throw "fake derivation, build ${buildAndroidndk} to use";
};
}