From 58b2e875c212f10129a2320f38f03988dee13bed Mon Sep 17 00:00:00 2001 From: John Ericson Date: Wed, 9 May 2018 18:50:51 -0400 Subject: lib/systems: Prohibit "gnu" ABI (*-gnu) with 32-bit ARM It is ambiguous, and therefore banned within GCC. --- lib/systems/default.nix | 7 +++++++ lib/systems/parse.nix | 12 ++++++++++-- 2 files changed, 17 insertions(+), 2 deletions(-) (limited to 'lib/systems') diff --git a/lib/systems/default.nix b/lib/systems/default.nix index 0e1a10c1f64b..ee4c29660a55 100644 --- a/lib/systems/default.nix +++ b/lib/systems/default.nix @@ -50,5 +50,12 @@ rec { } // mapAttrs (n: v: v final.parsed) inspect.predicates // args; in assert final.useAndroidPrebuilt -> final.isAndroid; + assert lib.foldl + (pass: { assertion, message }: + if assertion final + then pass + else throw message) + true + (final.parsed.abi.assertions or []); final; } diff --git a/lib/systems/parse.nix b/lib/systems/parse.nix index 16d657a5435a..08f2fb445de3 100644 --- a/lib/systems/parse.nix +++ b/lib/systems/parse.nix @@ -192,7 +192,15 @@ rec { abis = setTypes types.openAbi { android = {}; cygnus = {}; - gnu = {}; + gnu = { + assertions = [ + { assertion = platform: !platform.isAarch32; + message = '' + The "gnu" ABI is ambiguous on 32-bit ARM. Use "gnueabi" or "gnueabihf" instead. + ''; + } + ]; + }; msvc = {}; eabi = {}; androideabi = {}; @@ -270,7 +278,7 @@ rec { kernel = getKernel args.kernel; abi = /**/ if args ? abi then getAbi args.abi - else if isLinux parsed then abis.gnu + else if isLinux parsed then (if isAarch32 parsed then abis.gnueabi else abis.gnu) else if isWindows parsed then abis.gnu else abis.unknown; }; -- cgit 1.4.1