2016-12-16 05:22:02 -08:00
|
|
|
|
{ lib
|
2016-12-24 10:55:11 -08:00
|
|
|
|
, localSystem, crossSystem, config, overlays
|
2016-11-30 15:51:13 -08:00
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
assert crossSystem == null;
|
2004-03-08 08:02:46 -08:00
|
|
|
|
|
2016-12-16 05:22:02 -08:00
|
|
|
|
let
|
2016-12-24 10:55:11 -08:00
|
|
|
|
inherit (localSystem) system platform;
|
2004-03-08 08:02:46 -08:00
|
|
|
|
|
2012-11-29 05:10:49 -08:00
|
|
|
|
shell =
|
2011-11-21 06:11:04 -08:00
|
|
|
|
if system == "i686-freebsd" || system == "x86_64-freebsd" then "/usr/local/bin/bash"
|
2011-11-18 09:41:21 -08:00
|
|
|
|
else "/bin/bash";
|
2008-06-18 08:09:13 -07:00
|
|
|
|
|
2012-11-29 05:10:49 -08:00
|
|
|
|
path =
|
2011-11-21 06:11:04 -08:00
|
|
|
|
(if system == "i686-solaris" then [ "/usr/gnu" ] else []) ++
|
2009-10-16 03:03:27 -07:00
|
|
|
|
(if system == "i686-netbsd" then [ "/usr/pkg" ] else []) ++
|
2013-02-20 01:20:07 -08:00
|
|
|
|
(if system == "x86_64-solaris" then [ "/opt/local/gnu" ] else []) ++
|
2009-09-30 08:19:25 -07:00
|
|
|
|
["/" "/usr" "/usr/local"];
|
2008-06-18 08:09:13 -07:00
|
|
|
|
|
2012-01-19 07:56:17 -08:00
|
|
|
|
prehookBase = ''
|
2008-06-18 08:09:13 -07:00
|
|
|
|
# Disable purity tests; it's allowed (even needed) to link to
|
|
|
|
|
# libraries outside the Nix store (like the C library).
|
|
|
|
|
export NIX_ENFORCE_PURITY=
|
2016-03-15 09:35:07 -07:00
|
|
|
|
export NIX_ENFORCE_NO_NATIVE="''${NIX_ENFORCE_NO_NATIVE-1}"
|
2008-06-18 08:09:13 -07:00
|
|
|
|
'';
|
|
|
|
|
|
2012-01-19 07:56:17 -08:00
|
|
|
|
prehookFreeBSD = ''
|
|
|
|
|
${prehookBase}
|
2012-11-29 05:10:49 -08:00
|
|
|
|
|
2010-02-10 03:54:49 -08:00
|
|
|
|
alias make=gmake
|
|
|
|
|
alias tar=gtar
|
|
|
|
|
alias sed=gsed
|
2008-06-18 08:09:13 -07:00
|
|
|
|
export MAKE=gmake
|
|
|
|
|
shopt -s expand_aliases
|
|
|
|
|
'';
|
|
|
|
|
|
2012-01-19 07:56:17 -08:00
|
|
|
|
prehookOpenBSD = ''
|
|
|
|
|
${prehookBase}
|
2012-11-29 05:10:49 -08:00
|
|
|
|
|
2010-02-08 04:41:15 -08:00
|
|
|
|
alias make=gmake
|
|
|
|
|
alias grep=ggrep
|
|
|
|
|
alias mv=gmv
|
|
|
|
|
alias ln=gln
|
|
|
|
|
alias sed=gsed
|
|
|
|
|
alias tar=gtar
|
2012-11-29 05:10:49 -08:00
|
|
|
|
|
2009-09-23 06:30:04 -07:00
|
|
|
|
export MAKE=gmake
|
|
|
|
|
shopt -s expand_aliases
|
|
|
|
|
'';
|
|
|
|
|
|
2012-01-19 07:56:17 -08:00
|
|
|
|
prehookNetBSD = ''
|
|
|
|
|
${prehookBase}
|
2012-11-29 05:10:49 -08:00
|
|
|
|
|
2009-10-16 03:03:27 -07:00
|
|
|
|
alias make=gmake
|
|
|
|
|
alias sed=gsed
|
2009-10-16 03:09:33 -07:00
|
|
|
|
alias tar=gtar
|
2009-10-16 03:03:27 -07:00
|
|
|
|
export MAKE=gmake
|
|
|
|
|
shopt -s expand_aliases
|
|
|
|
|
'';
|
|
|
|
|
|
2015-05-26 06:18:49 -07:00
|
|
|
|
# prevent libtool from failing to find dynamic libraries
|
2012-01-19 07:56:17 -08:00
|
|
|
|
prehookCygwin = ''
|
|
|
|
|
${prehookBase}
|
2012-11-29 05:10:49 -08:00
|
|
|
|
|
2015-05-26 06:18:49 -07:00
|
|
|
|
shopt -s expand_aliases
|
|
|
|
|
export lt_cv_deplibs_check_method=pass_all
|
2008-06-18 08:09:13 -07:00
|
|
|
|
'';
|
|
|
|
|
|
2017-08-15 08:30:45 -07:00
|
|
|
|
extraNativeBuildInputsCygwin = [
|
2015-05-26 06:18:49 -07:00
|
|
|
|
../cygwin/all-buildinputs-as-runtimedep.sh
|
|
|
|
|
../cygwin/wrap-exes-to-find-dlls.sh
|
|
|
|
|
] ++ (if system == "i686-cygwin" then [
|
|
|
|
|
../cygwin/rebase-i686.sh
|
|
|
|
|
] else if system == "x86_64-cygwin" then [
|
|
|
|
|
../cygwin/rebase-x86_64.sh
|
|
|
|
|
] else []);
|
2008-06-18 08:09:13 -07:00
|
|
|
|
|
|
|
|
|
# A function that builds a "native" stdenv (one that uses tools in
|
2012-11-29 05:10:49 -08:00
|
|
|
|
# /usr etc.).
|
2009-02-02 07:03:38 -08:00
|
|
|
|
makeStdenv =
|
2016-12-19 08:10:47 -08:00
|
|
|
|
{ cc, fetchurl, extraPath ? [], overrides ? (self: super: { }) }:
|
2009-02-02 07:03:38 -08:00
|
|
|
|
|
|
|
|
|
import ../generic {
|
2017-07-05 18:47:48 -07:00
|
|
|
|
buildPlatform = localSystem;
|
2017-05-21 18:37:16 -07:00
|
|
|
|
hostPlatform = localSystem;
|
|
|
|
|
targetPlatform = localSystem;
|
|
|
|
|
|
2009-02-02 07:03:38 -08:00
|
|
|
|
preHook =
|
|
|
|
|
if system == "i686-freebsd" then prehookFreeBSD else
|
2011-11-18 09:41:21 -08:00
|
|
|
|
if system == "x86_64-freebsd" then prehookFreeBSD else
|
2009-09-23 06:30:04 -07:00
|
|
|
|
if system == "i686-openbsd" then prehookOpenBSD else
|
2012-11-29 05:10:49 -08:00
|
|
|
|
if system == "i686-netbsd" then prehookNetBSD else
|
2015-05-26 06:18:49 -07:00
|
|
|
|
if system == "i686-cygwin" then prehookCygwin else
|
|
|
|
|
if system == "x86_64-cygwin" then prehookCygwin else
|
2009-02-02 07:03:38 -08:00
|
|
|
|
prehookBase;
|
2008-06-18 08:09:13 -07:00
|
|
|
|
|
2017-08-15 08:30:45 -07:00
|
|
|
|
extraNativeBuildInputs =
|
|
|
|
|
if system == "i686-cygwin" then extraNativeBuildInputsCygwin else
|
|
|
|
|
if system == "x86_64-cygwin" then extraNativeBuildInputsCygwin else
|
2015-05-26 06:18:49 -07:00
|
|
|
|
[];
|
|
|
|
|
|
2009-02-02 07:03:38 -08:00
|
|
|
|
initialPath = extraPath ++ path;
|
2008-06-18 08:09:13 -07:00
|
|
|
|
|
2009-02-02 07:03:38 -08:00
|
|
|
|
fetchurlBoot = fetchurl;
|
2008-06-18 08:09:13 -07:00
|
|
|
|
|
2017-06-02 10:22:06 -07:00
|
|
|
|
inherit shell cc overrides config;
|
2008-06-18 08:09:13 -07:00
|
|
|
|
};
|
|
|
|
|
|
2016-12-16 05:22:02 -08:00
|
|
|
|
in
|
2008-06-18 08:09:13 -07:00
|
|
|
|
|
2016-12-16 05:22:02 -08:00
|
|
|
|
[
|
2012-11-29 05:10:49 -08:00
|
|
|
|
|
2016-12-16 05:22:02 -08:00
|
|
|
|
({}: rec {
|
|
|
|
|
__raw = true;
|
2009-02-02 07:03:38 -08:00
|
|
|
|
|
2016-12-16 05:22:02 -08:00
|
|
|
|
stdenv = makeStdenv {
|
|
|
|
|
cc = null;
|
|
|
|
|
fetchurl = null;
|
|
|
|
|
};
|
2017-09-20 08:07:52 -07:00
|
|
|
|
stdenvNoCC = stdenv;
|
2004-03-29 09:23:01 -08:00
|
|
|
|
|
2016-12-16 05:22:02 -08:00
|
|
|
|
cc = import ../../build-support/cc-wrapper {
|
|
|
|
|
name = "cc-native";
|
|
|
|
|
nativeTools = true;
|
|
|
|
|
nativeLibc = true;
|
|
|
|
|
nativePrefix = { # switch
|
|
|
|
|
"i686-solaris" = "/usr/gnu";
|
|
|
|
|
"x86_64-solaris" = "/opt/local/gcc47";
|
|
|
|
|
}.${system} or "/usr";
|
2017-09-20 08:07:52 -07:00
|
|
|
|
inherit stdenvNoCC;
|
2016-12-16 05:22:02 -08:00
|
|
|
|
};
|
2012-11-29 05:10:49 -08:00
|
|
|
|
|
2016-12-16 05:22:02 -08:00
|
|
|
|
fetchurl = import ../../build-support/fetchurl {
|
2018-02-17 10:44:43 -08:00
|
|
|
|
inherit lib stdenvNoCC;
|
2016-12-16 05:22:02 -08:00
|
|
|
|
# Curl should be in /usr/bin or so.
|
|
|
|
|
curl = null;
|
|
|
|
|
};
|
2012-11-29 05:10:49 -08:00
|
|
|
|
|
2016-12-16 05:22:02 -08:00
|
|
|
|
})
|
2012-11-29 05:10:49 -08:00
|
|
|
|
|
2008-06-18 08:09:13 -07:00
|
|
|
|
# First build a stdenv based only on tools outside the store.
|
2016-12-16 05:22:02 -08:00
|
|
|
|
(prevStage: {
|
2016-12-24 10:55:11 -08:00
|
|
|
|
inherit config overlays;
|
2016-12-16 05:22:02 -08:00
|
|
|
|
stdenv = makeStdenv {
|
|
|
|
|
inherit (prevStage) cc fetchurl;
|
|
|
|
|
} // { inherit (prevStage) fetchurl; };
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
# Using that, build a stdenv that adds the ‘xz’ command (which most systems
|
|
|
|
|
# don't have, so we mustn't rely on the native environment providing it).
|
|
|
|
|
(prevStage: {
|
2016-12-24 10:55:11 -08:00
|
|
|
|
inherit config overlays;
|
2016-12-16 05:22:02 -08:00
|
|
|
|
stdenv = makeStdenv {
|
|
|
|
|
inherit (prevStage.stdenv) cc fetchurl;
|
|
|
|
|
extraPath = [ prevStage.xz ];
|
|
|
|
|
overrides = self: super: { inherit (prevStage) xz; };
|
|
|
|
|
};
|
|
|
|
|
})
|
2009-02-02 07:03:38 -08:00
|
|
|
|
|
2016-12-16 05:22:02 -08:00
|
|
|
|
]
|