395829686d
These will be more pleasant to use than the existing (cc.cc.isClang or false) nonsense we currently do.
40 lines
868 B
Nix
40 lines
868 B
Nix
{ stdenv, pkgs, config, lib }:
|
|
|
|
import ../generic rec {
|
|
inherit config;
|
|
|
|
preHook =
|
|
''
|
|
export NIX_ENFORCE_PURITY=1
|
|
export NIX_IGNORE_LD_THROUGH_GCC=1
|
|
'';
|
|
|
|
initialPath = (import ../common-path.nix) {pkgs = pkgs;};
|
|
|
|
system = stdenv.system;
|
|
|
|
cc = import ../../build-support/cc-wrapper {
|
|
nativeTools = false;
|
|
nativePrefix = stdenv.lib.optionalString stdenv.isSunOS "/usr";
|
|
nativeLibc = true;
|
|
inherit stdenv;
|
|
binutils = pkgs.binutils;
|
|
cc = pkgs.gcc.cc;
|
|
isGNU = true;
|
|
coreutils = pkgs.coreutils;
|
|
shell = pkgs.bash + "/bin/sh";
|
|
};
|
|
|
|
shell = pkgs.bash + "/bin/sh";
|
|
|
|
fetchurlBoot = stdenv.fetchurlBoot;
|
|
|
|
overrides = pkgs_: {
|
|
inherit cc;
|
|
inherit (cc) binutils;
|
|
inherit (pkgs)
|
|
gzip bzip2 xz bash coreutils diffutils findutils gawk
|
|
gnumake gnused gnutar gnugrep gnupatch perl;
|
|
};
|
|
}
|