core/pkgs/stdenv/native/default.nix

223 lines
4.8 KiB
Nix
Raw Normal View History

2024-06-30 08:16:52 +00:00
{
lib,
localSystem,
crossSystem,
config,
overlays,
crossOverlays ? [ ],
2024-05-02 00:46:19 +00:00
}:
assert crossSystem == localSystem;
let
inherit (localSystem) system;
shell =
2024-06-30 08:16:52 +00:00
if system == "i686-freebsd" || system == "x86_64-freebsd" then
"/usr/local/bin/bash"
else
"/bin/bash";
2024-05-02 00:46:19 +00:00
path =
2024-06-30 08:16:52 +00:00
(lib.optionals (system == "i686-solaris") [ "/usr/gnu" ])
++ (lib.optionals (system == "i686-netbsd") [ "/usr/pkg" ])
++ (lib.optionals (system == "x86_64-solaris") [ "/opt/local/gnu" ])
++ [
"/"
"/usr"
"/usr/local"
];
2024-05-02 00:46:19 +00:00
prehookBase = ''
# Disable purity tests; it's allowed (even needed) to link to
# libraries outside the Nix store (like the C library).
export NIX_ENFORCE_PURITY=
export NIX_ENFORCE_NO_NATIVE="''${NIX_ENFORCE_NO_NATIVE-1}"
'';
prehookFreeBSD = ''
${prehookBase}
alias make=gmake
alias tar=gtar
alias sed=gsed
export MAKE=gmake
shopt -s expand_aliases
'';
prehookOpenBSD = ''
${prehookBase}
alias make=gmake
alias grep=ggrep
alias mv=gmv
alias ln=gln
alias sed=gsed
alias tar=gtar
export MAKE=gmake
shopt -s expand_aliases
'';
prehookNetBSD = ''
${prehookBase}
alias make=gmake
alias sed=gsed
alias tar=gtar
export MAKE=gmake
shopt -s expand_aliases
'';
# prevent libtool from failing to find dynamic libraries
prehookCygwin = ''
${prehookBase}
shopt -s expand_aliases
export lt_cv_deplibs_check_method=pass_all
'';
2024-06-30 08:16:52 +00:00
extraNativeBuildInputsCygwin =
[
../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
[ ]
);
2024-05-02 00:46:19 +00:00
# A function that builds a "native" stdenv (one that uses tools in
# /usr etc.).
makeStdenv =
2024-06-30 08:16:52 +00:00
{
cc,
fetchurl,
extraPath ? [ ],
overrides ? (self: super: { }),
extraNativeBuildInputs ? [ ],
}:
2024-05-02 00:46:19 +00:00
import ../generic {
buildPlatform = localSystem;
hostPlatform = localSystem;
targetPlatform = localSystem;
preHook =
2024-06-30 08:16:52 +00:00
if system == "i686-freebsd" then
prehookFreeBSD
else if system == "x86_64-freebsd" then
prehookFreeBSD
else if system == "i686-openbsd" then
prehookOpenBSD
else if system == "i686-netbsd" then
prehookNetBSD
else if system == "i686-cygwin" then
prehookCygwin
else if system == "x86_64-cygwin" then
prehookCygwin
else
prehookBase;
extraNativeBuildInputs =
extraNativeBuildInputs
++ (
if system == "i686-cygwin" then
extraNativeBuildInputsCygwin
else if system == "x86_64-cygwin" then
extraNativeBuildInputsCygwin
else
[ ]
);
2024-05-02 00:46:19 +00:00
initialPath = extraPath ++ path;
fetchurlBoot = fetchurl;
2024-06-30 08:16:52 +00:00
inherit
shell
cc
overrides
config
;
2024-05-02 00:46:19 +00:00
};
in
[
2024-06-30 08:16:52 +00:00
(
{ }:
rec {
__raw = true;
2024-05-02 00:46:19 +00:00
2024-06-30 08:16:52 +00:00
stdenv = makeStdenv {
cc = null;
fetchurl = null;
};
stdenvNoCC = stdenv;
cc =
let
nativePrefix =
{
# switch
i686-solaris = "/usr/gnu";
x86_64-solaris = "/opt/local/gcc47";
}
.${system} or "/usr";
in
import ../../build-support/cc-wrapper {
name = "cc-native";
nativeTools = true;
nativeLibc = true;
inherit lib nativePrefix;
bintools = import ../../build-support/bintools-wrapper {
name = "bintools";
inherit lib stdenvNoCC nativePrefix;
nativeTools = true;
nativeLibc = true;
};
inherit stdenvNoCC;
};
fetchurl = import ../../build-support/fetchurl {
inherit lib stdenvNoCC;
# Curl should be in /usr/bin or so.
curl = null;
2024-05-02 00:46:19 +00:00
};
2024-06-30 08:16:52 +00:00
}
)
2024-05-02 00:46:19 +00:00
# First build a stdenv based only on tools outside the store.
(prevStage: {
inherit config overlays;
2024-06-30 08:16:52 +00:00
stdenv =
makeStdenv {
inherit (prevStage) cc fetchurl;
overrides = self: super: { inherit (prevStage) fetchurl; };
}
// {
inherit (prevStage) fetchurl;
};
2024-05-02 00:46:19 +00:00
})
# 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: {
inherit config overlays;
stdenv = makeStdenv {
inherit (prevStage.stdenv) cc fetchurl;
extraPath = [ prevStage.xz ];
overrides = self: super: { inherit (prevStage) fetchurl xz; };
2024-06-30 08:16:52 +00:00
extraNativeBuildInputs = if localSystem.isLinux then [ prevStage.patchelf ] else [ ];
2024-05-02 00:46:19 +00:00
};
})
]