Merge branch 'staging'

Changed files
+1067 -397
doc
pkgs
+43 -12
doc/stdenv.xml
···
<variablelist>
<varlistentry>
-
<term>CC Wrapper</term>
<listitem>
<para>
-
CC Wrapper wraps a C toolchain for a bunch of miscellaneous purposes.
-
Specifically, a C compiler (GCC or Clang), Binutils (or the CCTools + binutils mashup when targetting Darwin), and a C standard library (glibc or Darwin's libSystem) are all fed in, and dependency finding, hardening (see below), and purity checks for each are handled by CC Wrapper.
-
Packages typically depend on only CC Wrapper, instead of those 3 inputs directly.
</para>
<para>
-
Dependency finding is undoubtedly the main task of CC wrapper.
It is currently accomplished by collecting directories of host-platform dependencies (i.e. <varname>buildInputs</varname> and <varname>nativeBuildInputs</varname>) in environment variables.
-
CC wrapper's setup hook causes any <filename>include</filename> subdirectory of such a dependency to be added to <envar>NIX_CFLAGS_COMPILE</envar>, and any <filename>lib</filename> and <filename>lib64</filename> subdirectories to <envar>NIX_LDFLAGS</envar>.
-
The setup hook itself contains some lengthy comments describing the exact convoluted mechanism by which this is accomplished.
</para>
<para>
A final task of the setup hook is defining a number of standard environment variables to tell build systems which executables full-fill which purpose.
-
They are defined to just be the base name of the tools, under the assumption that CC Wrapper's binaries will be on the path.
Firstly, this helps poorly-written packages, e.g. ones that look for just <command>gcc</command> when <envar>CC</envar> isn't defined yet <command>clang</command> is to be used.
-
Secondly, this helps packages not get confused when cross-compiling, in which case multiple CC wrappers may be simultaneous in use (targeting different platforms).
-
<envar>BUILD_</envar>- and <envar>TARGET_</envar>-prefixed versions of the normal environment variable are defined for the additional CC Wrappers, properly disambiguating them.
</para>
<para>
-
A problem with this final task is that CC Wrapper is honest and defines <envar>LD</envar> as <command>ld</command>.
Most packages, however, firstly use the C compiler for linking, secondly use <envar>LD</envar> anyways, defining it as the C compiler, and thirdly, only so define <envar>LD</envar> when it is undefined as a fallback.
-
This triple-threat means CC Wrapper will break those packages, as LD is already defined as the actually linker which the package won't override yet doesn't want to use.
The workaround is to define, just for the problematic package, <envar>LD</envar> as the C compiler.
A good way to do this would be <command>preConfigure = "LD=$CC"</command>.
</para>
</listitem>
</varlistentry>
···
<variablelist>
<varlistentry>
+
<term>Bintools Wrapper</term>
<listitem>
<para>
+
Bintools Wrapper wraps the binary utilities for a bunch of miscellaneous purposes.
+
These are GNU Binutils when targetting Linux, and a mix of cctools and GNU binutils for Darwin.
+
[The "Bintools" name is supposed to be a compromise between "Binutils" and "cctools" not denoting any specific implementation.]
+
Specifically, the underlying bintools package, and a C standard library (glibc or Darwin's libSystem, just for the dynamic loader) are all fed in, and dependency finding, hardening (see below), and purity checks for each are handled by Bintools Wrapper.
+
Packages typically depend on CC Wrapper, which in turn (at run time) depends on Bintools Wrapper.
</para>
<para>
+
Bintools Wrapper was only just recently split off from CC Wrapper, so the division of labor is still being worked out.
+
For example, it shouldn't care about about the C standard library, but just take a derivation with the dynamic loader (which happens to be the glibc on linux).
+
Dependency finding however is a task both wrappers will continue to need to share, and probably the most important to understand.
It is currently accomplished by collecting directories of host-platform dependencies (i.e. <varname>buildInputs</varname> and <varname>nativeBuildInputs</varname>) in environment variables.
+
Bintools Wrapper's setup hook causes any <filename>lib</filename> and <filename>lib64</filename> subdirectories to be added to <envar>NIX_LDFLAGS</envar>.
+
Since CC Wrapper and Bintools Wrapper use the same strategy, most of the Bintools Wrapper code is sparsely commented and refers to CC Wrapper.
+
But CC Wrapper's code, by contrast, has quite lengthy comments.
+
Bintools Wrapper merely cites those, rather than repeating them, to avoid falling out of sync.
</para>
<para>
A final task of the setup hook is defining a number of standard environment variables to tell build systems which executables full-fill which purpose.
+
They are defined to just be the base name of the tools, under the assumption that Bintools Wrapper's binaries will be on the path.
Firstly, this helps poorly-written packages, e.g. ones that look for just <command>gcc</command> when <envar>CC</envar> isn't defined yet <command>clang</command> is to be used.
+
Secondly, this helps packages not get confused when cross-compiling, in which case multiple Bintools Wrappers may simultaneously be in use.
+
<footnote><para>
+
Each wrapper targets a single platform, so if binaries for multiple platforms are needed, the underlying binaries must be wrapped multiple times.
+
As this is a property of the wrapper itself, the multiple wrappings are needed whether or not the same underlying binaries can target multiple platforms.
+
</para></footnote>
+
<envar>BUILD_</envar>- and <envar>TARGET_</envar>-prefixed versions of the normal environment variable are defined for the additional Bintools Wrappers, properly disambiguating them.
</para>
<para>
+
A problem with this final task is that Bintools Wrapper is honest and defines <envar>LD</envar> as <command>ld</command>.
Most packages, however, firstly use the C compiler for linking, secondly use <envar>LD</envar> anyways, defining it as the C compiler, and thirdly, only so define <envar>LD</envar> when it is undefined as a fallback.
+
This triple-threat means Bintools Wrapper will break those packages, as LD is already defined as the actual linker which the package won't override yet doesn't want to use.
The workaround is to define, just for the problematic package, <envar>LD</envar> as the C compiler.
A good way to do this would be <command>preConfigure = "LD=$CC"</command>.
+
</para>
+
</listitem>
+
</varlistentry>
+
+
<varlistentry>
+
<term>CC Wrapper</term>
+
<listitem>
+
<para>
+
CC Wrapper wraps a C toolchain for a bunch of miscellaneous purposes.
+
Specifically, a C compiler (GCC or Clang), wrapped binary tools, and a C standard library (glibc or Darwin's libSystem, just for the dynamic loader) are all fed in, and dependency finding, hardening (see below), and purity checks for each are handled by CC Wrapper.
+
Packages typically depend on CC Wrapper, which in turn (at run time) depends on Bintools Wrapper.
+
</para>
+
<para>
+
Dependency finding is undoubtedly the main task of CC Wrapper.
+
This works just like Bintools Wrapper, except that any <filename>include</filename> subdirectory of any relevant dependency is added to <envar>NIX_CFLAGS_COMPILE</envar>.
+
The setup hook itself contains some lengthy comments describing the exact convoluted mechanism by which this is accomplished.
+
</para>
+
<para>
+
CC Wrapper also like Bintools Wrapper defines standard environment variables with the names of the tools it wraps, for the same reasons described above.
+
Importantly, while it includes a <command>cc</command> symlink to the c compiler for portability, the <envar>CC</envar> will be defined using the compiler's "real name" (i.e. <command>gcc</command> or <command>clang</command>).
+
This helps lousy build systems that inspect on the name of the compiler rather than run it.
</para>
</listitem>
</varlistentry>
+9 -2
pkgs/applications/video/mpv/default.nix
···
-
{ stdenv, fetchurl, fetchFromGitHub, makeWrapper
, docutils, perl, pkgconfig, python3, which, ffmpeg
, freefont_ttf, freetype, libass, libpthreadstubs
, lua, lua5_sockets, libuchardet, libiconv ? null, darwin
···
sha256 = "0746kmsg69675y5c70vn8imcr9d1zpjz97f27xr1vx00yjpd518v";
};
-
patchPhase = ''
patchShebangs ./TOOLS/
'';
···
+
{ stdenv, fetchurl, fetchFromGitHub, fetchpatch, makeWrapper
, docutils, perl, pkgconfig, python3, which, ffmpeg
, freefont_ttf, freetype, libass, libpthreadstubs
, lua, lua5_sockets, libuchardet, libiconv ? null, darwin
···
sha256 = "0746kmsg69675y5c70vn8imcr9d1zpjz97f27xr1vx00yjpd518v";
};
+
patches = [
+
(fetchpatch {
+
url = "https://github.com/mpv-player/mpv/commit/2ecf240b1cd20875991a5b18efafbe799864ff7f.patch";
+
sha256 = "1sr0770rvhsgz8d7ysr9qqp4g9gwdhgj8g3rgnz90wl49lgrykhb";
+
})
+
];
+
+
postPatch = ''
patchShebangs ./TOOLS/
'';
+40
pkgs/build-support/bintools-wrapper/add-flags.sh
···
···
+
# See cc-wrapper for comments.
+
var_templates_list=(
+
NIX+IGNORE_LD_THROUGH_GCC
+
NIX+LDFLAGS
+
NIX+LDFLAGS_BEFORE
+
NIX+LDFLAGS_AFTER
+
NIX+LDFLAGS_HARDEN
+
)
+
var_templates_bool=(
+
NIX+SET_BUILD_ID
+
NIX+DONT_SET_RPATH
+
)
+
+
declare -a role_infixes=()
+
if [ "${NIX_BINTOOLS_WRAPPER_@infixSalt@_TARGET_BUILD:-}" ]; then
+
role_infixes+=(_BUILD_)
+
fi
+
if [ "${NIX_BINTOOLS_WRAPPER_@infixSalt@_TARGET_HOST:-}" ]; then
+
role_infixes+=(_)
+
fi
+
if [ "${NIX_BINTOOLS_WRAPPER_@infixSalt@_TARGET_TARGET:-}" ]; then
+
role_infixes+=(_TARGET_)
+
fi
+
+
for var in "${var_templates_list[@]}"; do
+
mangleVarList "$var" "${role_infixes[@]}"
+
done
+
for var in "${var_templates_bool[@]}"; do
+
mangleVarBool "$var" "${role_infixes[@]}"
+
done
+
+
if [ -e @out@/nix-support/libc-ldflags ]; then
+
NIX_@infixSalt@_LDFLAGS+=" $(< @out@/nix-support/libc-ldflags)"
+
fi
+
+
if [ -e @out@/nix-support/libc-ldflags-before ]; then
+
NIX_@infixSalt@_LDFLAGS_BEFORE="$(< @out@/nix-support/libc-ldflags-before) $NIX_@infixSalt@_LDFLAGS_BEFORE"
+
fi
+
+
export NIX_BINTOOLS_WRAPPER_@infixSalt@_FLAGS_SET=1
+53
pkgs/build-support/bintools-wrapper/add-hardening.sh
···
···
+
hardeningFlags=(relro bindnow)
+
# Intentionally word-split in case 'hardeningEnable' is defined in
+
# Nix. Also, our bootstrap tools version of bash is old enough that
+
# undefined arrays trip `set -u`.
+
if [[ -v hardeningEnable[@] ]]; then
+
hardeningFlags+=(${hardeningEnable[@]})
+
fi
+
hardeningLDFlags=()
+
+
declare -A hardeningDisableMap
+
+
# Intentionally word-split in case 'hardeningDisable' is defined in Nix.
+
for flag in ${hardeningDisable[@]:-IGNORED_KEY} @hardening_unsupported_flags@
+
do
+
hardeningDisableMap[$flag]=1
+
done
+
+
if (( "${NIX_DEBUG:-0}" >= 1 )); then
+
printf 'HARDENING: disabled flags:' >&2
+
(( "${#hardeningDisableMap[@]}" )) && printf ' %q' "${!hardeningDisableMap[@]}" >&2
+
echo >&2
+
fi
+
+
if [[ -z "${hardeningDisableMap[all]:-}" ]]; then
+
if (( "${NIX_DEBUG:-0}" >= 1 )); then
+
echo 'HARDENING: Is active (not completely disabled with "all" flag)' >&2;
+
fi
+
for flag in "${hardeningFlags[@]}"
+
do
+
if [[ -z "${hardeningDisableMap[$flag]:-}" ]]; then
+
case $flag in
+
pie)
+
if [[ ! ("$*" =~ " -shared " || "$*" =~ " -static ") ]]; then
+
if (( "${NIX_DEBUG:-0}" >= 1 )); then echo HARDENING: enabling LDFlags -pie >&2; fi
+
hardeningLDFlags+=('-pie')
+
fi
+
;;
+
relro)
+
if (( "${NIX_DEBUG:-0}" >= 1 )); then echo HARDENING: enabling relro >&2; fi
+
hardeningLDFlags+=('-z' 'relro')
+
;;
+
bindnow)
+
if (( "${NIX_DEBUG:-0}" >= 1 )); then echo HARDENING: enabling bindnow >&2; fi
+
hardeningLDFlags+=('-z' 'now')
+
;;
+
*)
+
# Ignore unsupported. Checked in Nix that at least *some*
+
# tool supports each flag.
+
;;
+
esac
+
fi
+
done
+
fi
+292
pkgs/build-support/bintools-wrapper/default.nix
···
···
+
# The Nixpkgs CC is not directly usable, since it doesn't know where
+
# the C library and standard header files are. Therefore the compiler
+
# produced by that package cannot be installed directly in a user
+
# environment and used from the command line. So we use a wrapper
+
# script that sets up the right environment variables so that the
+
# compiler and the linker just "work".
+
+
{ name ? "", stdenvNoCC, nativeTools, noLibc ? false, nativeLibc, nativePrefix ? ""
+
, bintools ? null, libc ? null
+
, coreutils ? null, shell ? stdenvNoCC.shell, gnugrep ? null
+
, extraPackages ? [], extraBuildCommands ? ""
+
, buildPackages ? {}
+
, useMacosReexportHack ? false
+
}:
+
+
with stdenvNoCC.lib;
+
+
assert nativeTools -> nativePrefix != "";
+
assert !nativeTools ->
+
bintools != null && coreutils != null && gnugrep != null;
+
assert !(nativeLibc && noLibc);
+
assert (noLibc || nativeLibc) == (libc == null);
+
+
let
+
stdenv = stdenvNoCC;
+
inherit (stdenv) hostPlatform targetPlatform;
+
+
# Prefix for binaries. Customarily ends with a dash separator.
+
#
+
# TODO(@Ericson2314) Make unconditional, or optional but always true by
+
# default.
+
targetPrefix = stdenv.lib.optionalString (targetPlatform != hostPlatform)
+
(targetPlatform.config + "-");
+
+
bintoolsVersion = (builtins.parseDrvName bintools.name).version;
+
bintoolsName = (builtins.parseDrvName bintools.name).name;
+
+
libc_bin = if libc == null then null else getBin libc;
+
libc_dev = if libc == null then null else getDev libc;
+
libc_lib = if libc == null then null else getLib libc;
+
bintools_bin = if nativeTools then "" else getBin bintools;
+
# The wrapper scripts use 'cat' and 'grep', so we may need coreutils.
+
coreutils_bin = if nativeTools then "" else getBin coreutils;
+
+
dashlessTarget = stdenv.lib.replaceStrings ["-"] ["_"] targetPlatform.config;
+
+
# See description in cc-wrapper.
+
infixSalt = dashlessTarget;
+
+
# The dynamic linker has different names on different platforms. This is a
+
# shell glob that ought to match it.
+
dynamicLinker =
+
/**/ if libc == null then null
+
else if targetPlatform.system == "i686-linux" then "${libc_lib}/lib/ld-linux.so.2"
+
else if targetPlatform.system == "x86_64-linux" then "${libc_lib}/lib/ld-linux-x86-64.so.2"
+
# ARM with a wildcard, which can be "" or "-armhf".
+
else if (with targetPlatform; isArm && isLinux) then "${libc_lib}/lib/ld-linux*.so.3"
+
else if targetPlatform.system == "aarch64-linux" then "${libc_lib}/lib/ld-linux-aarch64.so.1"
+
else if targetPlatform.system == "powerpc-linux" then "${libc_lib}/lib/ld.so.1"
+
else if targetPlatform.system == "mips64el-linux" then "${libc_lib}/lib/ld.so.1"
+
else if targetPlatform.isDarwin then "/usr/lib/dyld"
+
else if stdenv.lib.hasSuffix "pc-gnu" targetPlatform.config then "ld.so.1"
+
else null;
+
+
expand-response-params =
+
if buildPackages.stdenv.cc or null != null && buildPackages.stdenv.cc != "/dev/null"
+
then import ../expand-response-params { inherit (buildPackages) stdenv; }
+
else "";
+
+
in
+
+
stdenv.mkDerivation {
+
name = targetPrefix
+
+ (if name != "" then name else "${bintoolsName}-wrapper")
+
+ (stdenv.lib.optionalString (bintools != null && bintoolsVersion != "") "-${bintoolsVersion}");
+
+
preferLocalBuild = true;
+
+
inherit bintools_bin libc_bin libc_dev libc_lib coreutils_bin;
+
shell = getBin shell + shell.shellPath or "";
+
gnugrep_bin = if nativeTools then "" else gnugrep;
+
+
inherit targetPrefix infixSalt;
+
+
outputs = [ "out" "info" "man" ];
+
+
passthru = {
+
inherit bintools libc nativeTools nativeLibc nativePrefix;
+
+
emacsBufferSetup = pkgs: ''
+
; We should handle propagation here too
+
(mapc
+
(lambda (arg)
+
(when (file-directory-p (concat arg "/lib"))
+
(setenv "NIX_${infixSalt}_LDFLAGS" (concat (getenv "NIX_${infixSalt}_LDFLAGS") " -L" arg "/lib")))
+
(when (file-directory-p (concat arg "/lib64"))
+
(setenv "NIX_${infixSalt}_LDFLAGS" (concat (getenv "NIX_${infixSalt}_LDFLAGS") " -L" arg "/lib64"))))
+
'(${concatStringsSep " " (map (pkg: "\"${pkg}\"") pkgs)}))
+
'';
+
};
+
+
dontBuild = true;
+
dontConfigure = true;
+
+
unpackPhase = ''
+
src=$PWD
+
'';
+
+
installPhase =
+
''
+
set -u
+
+
mkdir -p $out/bin {$out,$info,$man}/nix-support
+
+
wrap() {
+
local dst="$1"
+
local wrapper="$2"
+
export prog="$3"
+
set +u
+
substituteAll "$wrapper" "$out/bin/$dst"
+
set -u
+
chmod +x "$out/bin/$dst"
+
}
+
''
+
+
+ (if nativeTools then ''
+
echo ${nativePrefix} > $out/nix-support/orig-bintools
+
+
ldPath="${nativePrefix}/bin"
+
'' else ''
+
echo $bintools_bin > $out/nix-support/orig-bintools
+
+
ldPath="${bintools_bin}/bin"
+
''
+
+
+ optionalString (targetPlatform.isSunOS && nativePrefix != "") ''
+
# Solaris needs an additional ld wrapper.
+
ldPath="${nativePrefix}/bin"
+
exec="$ldPath/${targetPrefix}ld"
+
wrap ld-solaris ${./ld-solaris-wrapper.sh}
+
'')
+
+
+ ''
+
# Create a symlink to as (the assembler).
+
if [ -e $ldPath/${targetPrefix}as ]; then
+
ln -s $ldPath/${targetPrefix}as $out/bin/${targetPrefix}as
+
fi
+
+
'' + (if !useMacosReexportHack then ''
+
wrap ${targetPrefix}ld ${./ld-wrapper.sh} ''${ld:-$ldPath/${targetPrefix}ld}
+
'' else ''
+
ldInner="${targetPrefix}ld-reexport-delegate"
+
wrap "$ldInner" ${./macos-sierra-reexport-hack.bash} ''${ld:-$ldPath/${targetPrefix}ld}
+
wrap "${targetPrefix}ld" ${./ld-wrapper.sh} "$out/bin/$ldInner"
+
unset ldInner
+
'') + ''
+
+
for variant in ld.gold ld.bfd ld.lld; do
+
local underlying=$ldPath/${targetPrefix}$variant
+
[[ -e "$underlying" ]] || continue
+
wrap ${targetPrefix}$variant ${./ld-wrapper.sh} $underlying
+
done
+
+
set +u
+
'';
+
+
propagatedBuildInputs = extraPackages;
+
+
setupHook = ./setup-hook.sh;
+
+
postFixup =
+
''
+
set -u
+
''
+
+
+ optionalString (libc != null) (''
+
##
+
## General libc support
+
##
+
+
echo "-L${libc_lib}/lib" > $out/nix-support/libc-ldflags
+
+
echo "${libc_lib}" > $out/nix-support/orig-libc
+
echo "${libc_dev}" > $out/nix-support/orig-libc-dev
+
+
##
+
## Dynamic linker support
+
##
+
+
if [[ -z ''${dynamicLinker+x} ]]; then
+
echo "Don't know the name of the dynamic linker for platform '${targetPlatform.config}', so guessing instead." >&2
+
local dynamicLinker="${libc_lib}/lib/ld*.so.?"
+
fi
+
+
# Expand globs to fill array of options
+
dynamicLinker=($dynamicLinker)
+
+
case ''${#dynamicLinker[@]} in
+
0) echo "No dynamic linker found for platform '${targetPlatform.config}'." >&2;;
+
1) echo "Using dynamic linker: '$dynamicLinker'" >&2;;
+
*) echo "Multiple dynamic linkers found for platform '${targetPlatform.config}'." >&2;;
+
esac
+
+
if [ -n "''${dynamicLinker:-}" ]; then
+
echo $dynamicLinker > $out/nix-support/dynamic-linker
+
+
'' + (if targetPlatform.isDarwin then ''
+
printf "export LD_DYLD_PATH=%q\n" "$dynamicLinker" >> $out/nix-support/setup-hook
+
'' else ''
+
if [ -e ${libc_lib}/lib/32/ld-linux.so.2 ]; then
+
echo ${libc_lib}/lib/32/ld-linux.so.2 > $out/nix-support/dynamic-linker-m32
+
fi
+
+
local ldflagsBefore=(-dynamic-linker "$dynamicLinker")
+
'') + ''
+
fi
+
+
# The dynamic linker is passed in `ldflagsBefore' to allow
+
# explicit overrides of the dynamic linker by callers to ld
+
# (the *last* value counts, so ours should come first).
+
printWords "''${ldflagsBefore[@]}" > $out/nix-support/libc-ldflags-before
+
'')
+
+
+ optionalString (!nativeTools) ''
+
+
##
+
## User env support
+
##
+
+
# Propagate the underling unwrapped bintools so that if you
+
# install the wrapper, you get tools like objdump, the manpages,
+
# etc. as well (same for any binaries of libc).
+
printWords ${bintools_bin} ${if libc == null then "" else libc_bin} > $out/nix-support/propagated-user-env-packages
+
+
##
+
## Man page and info support
+
##
+
+
printWords ${bintools.info or ""} \
+
>> $info/nix-support/propagated-build-inputs
+
printWords ${bintools.man or ""} \
+
>> $man/nix-support/propagated-build-inputs
+
''
+
+
+ ''
+
+
##
+
## Hardening support
+
##
+
+
# some linkers on some platforms don't support specific -z flags
+
export hardening_unsupported_flags=""
+
if [[ "$($ldPath/${targetPrefix}ld -z now 2>&1 || true)" =~ un(recognized|known)\ option ]]; then
+
hardening_unsupported_flags+=" bindnow"
+
fi
+
if [[ "$($ldPath/${targetPrefix}ld -z relro 2>&1 || true)" =~ un(recognized|known)\ option ]]; then
+
hardening_unsupported_flags+=" relro"
+
fi
+
''
+
+
+ optionalString hostPlatform.isCygwin ''
+
hardening_unsupported_flags+=" pic"
+
''
+
+
+ ''
+
set +u
+
substituteAll ${./add-flags.sh} $out/nix-support/add-flags.sh
+
substituteAll ${./add-hardening.sh} $out/nix-support/add-hardening.sh
+
substituteAll ${../cc-wrapper/utils.sh} $out/nix-support/utils.sh
+
+
##
+
## Extra custom steps
+
##
+
+
''
+
+ extraBuildCommands;
+
+
inherit dynamicLinker expand-response-params;
+
+
# for substitution in utils.sh
+
expandResponseParams = "${expand-response-params}/bin/expand-response-params";
+
+
meta =
+
let bintools_ = if bintools != null then bintools else {}; in
+
(if bintools_ ? meta then removeAttrs bintools.meta ["priority"] else {}) //
+
{ description =
+
stdenv.lib.attrByPath ["meta" "description"] "System binary utilities" bintools_
+
+ " (wrapper script)";
+
} // optionalAttrs useMacosReexportHack {
+
platforms = stdenv.lib.platforms.darwin;
+
};
+
}
+29
pkgs/build-support/bintools-wrapper/ld-solaris-wrapper.sh
···
···
+
#!@shell@
+
set -eu -o pipefail
+
shopt -s nullglob
+
+
if (( "${NIX_DEBUG:-0}" >= 7 )); then
+
set -x
+
fi
+
+
declare -a args=("$@")
+
# I've also tried adding -z direct and -z lazyload, but it gave too many problems with C++ exceptions :'(
+
# Also made sure libgcc would not be lazy-loaded, as suggested here: https://www.illumos.org/issues/2534#note-3
+
# but still no success.
+
declare -a argsBefore=(-z ignore) argsAfter=()
+
+
# This loop makes sure all -L arguments are before -l arguments, or ld may complain it cannot find a library.
+
# GNU binutils does not have this problem:
+
# http://stackoverflow.com/questions/5817269/does-the-order-of-l-and-l-options-in-the-gnu-linker-matter
+
while (( $# )); do
+
case "${args[$i]}" in
+
-L) argsBefore+=("$1" "$2"); shift ;;
+
-L?*) argsBefore+=("$1") ;;
+
*) argsAfter+=("$1") ;;
+
esac
+
shift
+
done
+
+
# Trace:
+
set -x
+
exec "@ld@" "${argsBefore[@]}" "${argsAfter[@]}"
+67
pkgs/build-support/bintools-wrapper/setup-hook.sh
···
···
+
# Binutils Wrapper hygiene
+
#
+
# See comments in cc-wrapper's setup hook. This works exactly the same way.
+
+
bintoolsWrapper_addLDVars () {
+
case $depOffset in
+
-1) local role='BUILD_' ;;
+
0) local role='' ;;
+
1) local role='TARGET_' ;;
+
*) echo "bintools-wrapper: Error: Cannot be used with $depOffset-offset deps, " >2;
+
return 1 ;;
+
esac
+
+
if [[ -d "$1/lib64" && ! -L "$1/lib64" ]]; then
+
export NIX_${role}LDFLAGS+=" -L$1/lib64"
+
fi
+
+
if [[ -d "$1/lib" ]]; then
+
export NIX_${role}LDFLAGS+=" -L$1/lib"
+
fi
+
}
+
+
if [ -n "${crossConfig:-}" ]; then
+
export NIX_BINTOOLS_WRAPPER_@infixSalt@_TARGET_BUILD=1
+
role_pre='BUILD_'
+
role_post='_FOR_BUILD'
+
else
+
export NIX_BINTOOLS_WRAPPER_@infixSalt@_TARGET_HOST=1
+
role_pre=""
+
role_post=''
+
fi
+
+
envHooks+=(bintoolsWrapper_addLDVars)
+
+
# shellcheck disable=SC2157
+
if [ -n "@bintools_bin@" ]; then
+
addToSearchPath _PATH @bintools_bin@/bin
+
fi
+
+
# shellcheck disable=SC2157
+
if [ -n "@libc_bin@" ]; then
+
addToSearchPath _PATH @libc_bin@/bin
+
fi
+
+
# shellcheck disable=SC2157
+
if [ -n "@coreutils_bin@" ]; then
+
addToSearchPath _PATH @coreutils_bin@/bin
+
fi
+
+
# Export tool environment variables so various build systems use the right ones.
+
+
export NIX_${role_pre}BINTOOLS=@out@
+
+
for cmd in \
+
ar as ld nm objcopy objdump readelf ranlib strip strings size windres
+
do
+
if
+
PATH=$_PATH type -p "@targetPrefix@${cmd}" > /dev/null
+
then
+
upper_case="$(echo "$cmd" | tr "[:lower:]" "[:upper:]")"
+
export "${role_pre}${upper_case}=@targetPrefix@${cmd}";
+
export "${upper_case}${role_post}=@targetPrefix@${cmd}";
+
fi
+
done
+
+
# No local scope in sourced file
+
unset -v role_pre role_post cmd upper_case
+8 -27
pkgs/build-support/cc-wrapper/add-flags.sh
···
# that case, it is cheaper/better to not repeat this step and let the forked
# wrapped binary just inherit the work of the forker's wrapper script.
-
var_templates=(
NIX+CFLAGS_COMPILE
NIX+CFLAGS_LINK
NIX+CXXSTDLIB_COMPILE
NIX+CXXSTDLIB_LINK
NIX+GNATFLAGS_COMPILE
-
NIX+IGNORE_LD_THROUGH_GCC
-
NIX+LDFLAGS
-
NIX+LDFLAGS_BEFORE
-
NIX+LDFLAGS_AFTER
-
-
NIX+SET_BUILD_ID
-
NIX+DONT_SET_RPATH
NIX+ENFORCE_NO_NATIVE
)
···
# We need to mangle names for hygiene, but also take parameters/overrides
# from the environment.
-
for var in "${var_templates[@]}"; do
-
outputVar="${var/+/_@infixSalt@_}"
-
export ${outputVar}+=''
-
# For each role we serve, we accumulate the input parameters into our own
-
# cc-wrapper-derivation-specific environment variables.
-
for infix in "${role_infixes[@]}"; do
-
inputVar="${var/+/${infix}}"
-
if [ -v "$inputVar" ]; then
-
export ${outputVar}+="${!outputVar:+ }${!inputVar}"
-
fi
-
done
done
# `-B@out@/bin' forces cc to use ld-wrapper.sh when calling ld.
···
NIX_@infixSalt@_GNATFLAGS_COMPILE="$(< @out@/nix-support/gnat-cflags) $NIX_@infixSalt@_GNATFLAGS_COMPILE"
fi
-
if [ -e @out@/nix-support/libc-ldflags ]; then
-
NIX_@infixSalt@_LDFLAGS+=" $(< @out@/nix-support/libc-ldflags)"
-
fi
-
if [ -e @out@/nix-support/cc-ldflags ]; then
NIX_@infixSalt@_LDFLAGS+=" $(< @out@/nix-support/cc-ldflags)"
-
fi
-
-
if [ -e @out@/nix-support/libc-ldflags-before ]; then
-
NIX_@infixSalt@_LDFLAGS_BEFORE="$(< @out@/nix-support/libc-ldflags-before) $NIX_@infixSalt@_LDFLAGS_BEFORE"
fi
# That way forked processes will not extend these environment variables again.
···
# that case, it is cheaper/better to not repeat this step and let the forked
# wrapped binary just inherit the work of the forker's wrapper script.
+
var_templates_list=(
NIX+CFLAGS_COMPILE
NIX+CFLAGS_LINK
NIX+CXXSTDLIB_COMPILE
NIX+CXXSTDLIB_LINK
NIX+GNATFLAGS_COMPILE
+
)
+
var_templates_bool=(
NIX+ENFORCE_NO_NATIVE
)
···
# We need to mangle names for hygiene, but also take parameters/overrides
# from the environment.
+
for var in "${var_templates_list[@]}"; do
+
mangleVarList "$var" "${role_infixes[@]}"
+
done
+
for var in "${var_templates_bool[@]}"; do
+
mangleVarBool "$var" "${role_infixes[@]}"
done
# `-B@out@/bin' forces cc to use ld-wrapper.sh when calling ld.
···
NIX_@infixSalt@_GNATFLAGS_COMPILE="$(< @out@/nix-support/gnat-cflags) $NIX_@infixSalt@_GNATFLAGS_COMPILE"
fi
if [ -e @out@/nix-support/cc-ldflags ]; then
NIX_@infixSalt@_LDFLAGS+=" $(< @out@/nix-support/cc-ldflags)"
fi
# That way forked processes will not extend these environment variables again.
-10
pkgs/build-support/cc-wrapper/add-hardening.sh
···
hardeningFlags+=(${hardeningEnable[@]})
fi
hardeningCFlags=()
-
hardeningLDFlags=()
declare -A hardeningDisableMap
···
if [[ ! ("$*" =~ " -shared " || "$*" =~ " -static ") ]]; then
if (( "${NIX_DEBUG:-0}" >= 1 )); then echo HARDENING: enabling LDFlags -pie >&2; fi
hardeningCFlags+=('-pie')
-
hardeningLDFlags+=('-pie')
fi
;;
pic)
···
format)
if (( "${NIX_DEBUG:-0}" >= 1 )); then echo HARDENING: enabling format >&2; fi
hardeningCFlags+=('-Wformat' '-Wformat-security' '-Werror=format-security')
-
;;
-
relro)
-
if (( "${NIX_DEBUG:-0}" >= 1 )); then echo HARDENING: enabling relro >&2; fi
-
hardeningLDFlags+=('-z' 'relro')
-
;;
-
bindnow)
-
if (( "${NIX_DEBUG:-0}" >= 1 )); then echo HARDENING: enabling bindnow >&2; fi
-
hardeningLDFlags+=('-z' 'now')
;;
*)
# Ignore unsupported. Checked in Nix that at least *some*
···
hardeningFlags+=(${hardeningEnable[@]})
fi
hardeningCFlags=()
declare -A hardeningDisableMap
···
if [[ ! ("$*" =~ " -shared " || "$*" =~ " -static ") ]]; then
if (( "${NIX_DEBUG:-0}" >= 1 )); then echo HARDENING: enabling LDFlags -pie >&2; fi
hardeningCFlags+=('-pie')
fi
;;
pic)
···
format)
if (( "${NIX_DEBUG:-0}" >= 1 )); then echo HARDENING: enabling format >&2; fi
hardeningCFlags+=('-Wformat' '-Wformat-security' '-Werror=format-security')
;;
*)
# Ignore unsupported. Checked in Nix that at least *some*
+10 -3
pkgs/build-support/cc-wrapper/cc-wrapper.sh
···
PATH="@coreutils_bin@/bin:@gnugrep_bin@/bin"
fi
if [ -z "${NIX_CC_WRAPPER_@infixSalt@_FLAGS_SET:-}" ]; then
source @out@/nix-support/add-flags.sh
fi
-
-
source @out@/nix-support/utils.sh
# Parse command line options and set several variables.
···
cppInclude=0
elif [ "$p" = -nostdinc++ ]; then
cppInclude=0
-
elif [ "${p:0:1}" != - ]; then
nonFlagArgs=1
fi
n+=1
···
PATH="@coreutils_bin@/bin:@gnugrep_bin@/bin"
fi
+
source @out@/nix-support/utils.sh
+
+
# Flirting with a layer violation here.
+
if [ -z "${NIX_BINTOOLS_WRAPPER_@infixSalt@_FLAGS_SET:-}" ]; then
+
source @bintools@/nix-support/add-flags.sh
+
fi
+
+
# Put this one second so libc ldflags take priority.
if [ -z "${NIX_CC_WRAPPER_@infixSalt@_FLAGS_SET:-}" ]; then
source @out@/nix-support/add-flags.sh
fi
# Parse command line options and set several variables.
···
cppInclude=0
elif [ "$p" = -nostdinc++ ]; then
cppInclude=0
+
elif [[ "$p" != -?* ]]; then
+
# A dash alone signifies standard input; it is not a flag
nonFlagArgs=1
fi
n+=1
+41 -116
pkgs/build-support/cc-wrapper/default.nix
···
# compiler and the linker just "work".
{ name ? "", stdenvNoCC, nativeTools, noLibc ? false, nativeLibc, nativePrefix ? ""
-
, cc ? null, libc ? null, binutils ? null, coreutils ? null, shell ? stdenvNoCC.shell
, zlib ? null, extraPackages ? [], extraBuildCommands ? ""
, isGNU ? false, isClang ? cc.isClang or false, gnugrep ? null
, buildPackages ? {}
-
, useMacosReexportHack ? false
}:
with stdenvNoCC.lib;
assert nativeTools -> nativePrefix != "";
assert !nativeTools ->
-
cc != null && binutils != null && coreutils != null && gnugrep != null;
assert !(nativeLibc && noLibc);
assert (noLibc || nativeLibc) == (libc == null);
···
libc_dev = if libc == null then null else getDev libc;
libc_lib = if libc == null then null else getLib libc;
cc_solib = getLib cc;
-
binutils_bin = if nativeTools then "" else getBin binutils;
# The wrapper scripts use 'cat' and 'grep', so we may need coreutils.
coreutils_bin = if nativeTools then "" else getBin coreutils;
···
# unstable implementation detail, however.
infixSalt = dashlessTarget;
-
# The dynamic linker has different names on different platforms. This is a
-
# shell glob that ought to match it.
-
dynamicLinker =
-
/**/ if libc == null then null
-
else if targetPlatform.system == "i686-linux" then "${libc_lib}/lib/ld-linux.so.2"
-
else if targetPlatform.system == "x86_64-linux" then "${libc_lib}/lib/ld-linux-x86-64.so.2"
-
# ARM with a wildcard, which can be "" or "-armhf".
-
else if (with targetPlatform; isArm && isLinux) then "${libc_lib}/lib/ld-linux*.so.3"
-
else if targetPlatform.system == "aarch64-linux" then "${libc_lib}/lib/ld-linux-aarch64.so.1"
-
else if targetPlatform.system == "powerpc-linux" then "${libc_lib}/lib/ld.so.1"
-
else if targetPlatform.system == "mips64el-linux" then "${libc_lib}/lib/ld.so.1"
-
else if targetPlatform.isDarwin then "/usr/lib/dyld"
-
else if stdenv.lib.hasSuffix "pc-gnu" targetPlatform.config then "ld.so.1"
-
else null;
-
expand-response-params =
if buildPackages.stdenv.cc or null != null && buildPackages.stdenv.cc != "/dev/null"
then import ../expand-response-params { inherit (buildPackages) stdenv; }
···
in
stdenv.mkDerivation {
name = targetPrefix
+ (if name != "" then name else "${ccName}-wrapper")
···
preferLocalBuild = true;
-
inherit cc libc_bin libc_dev libc_lib binutils_bin coreutils_bin;
-
shell = getBin shell + shell.shellPath or "";
gnugrep_bin = if nativeTools then "" else gnugrep;
inherit targetPrefix infixSalt;
···
passthru = {
# "cc" is the generic name for a C compiler, but there is no one for package
# providing the linker and related tools. The two we use now are GNU
-
# Binutils, and Apple's "cctools"; "binutils" as an attempt to find an
# unused middle-ground name that evokes both.
-
bintools = binutils_bin;
inherit libc nativeTools nativeLibc nativePrefix isGNU isClang default_cxx_stdlib_compile;
emacsBufferSetup = pkgs: ''
; We should handle propagation here too
-
(mapc (lambda (arg)
-
(when (file-directory-p (concat arg "/include"))
-
(setenv "NIX_${infixSalt}_CFLAGS_COMPILE" (concat (getenv "NIX_${infixSalt}_CFLAGS_COMPILE") " -isystem " arg "/include")))
-
(when (file-directory-p (concat arg "/lib"))
-
(setenv "NIX_${infixSalt}_LDFLAGS" (concat (getenv "NIX_${infixSalt}_LDFLAGS") " -L" arg "/lib")))
-
(when (file-directory-p (concat arg "/lib64"))
-
(setenv "NIX_${infixSalt}_LDFLAGS" (concat (getenv "NIX_${infixSalt}_LDFLAGS") " -L" arg "/lib64")))) '(${concatStringsSep " " (map (pkg: "\"${pkg}\"") pkgs)}))
'';
};
···
echo ${if targetPlatform.isDarwin then cc else nativePrefix} > $out/nix-support/orig-cc
ccPath="${if targetPlatform.isDarwin then cc else nativePrefix}/bin"
-
ldPath="${nativePrefix}/bin"
'' else ''
echo $cc > $out/nix-support/orig-cc
ccPath="${cc}/bin"
-
ldPath="${binutils_bin}/bin"
-
''
-
-
+ optionalString (targetPlatform.isSunOS && nativePrefix != "") ''
-
# Solaris needs an additional ld wrapper.
-
ldPath="${nativePrefix}/bin"
-
exec="$ldPath/${targetPrefix}ld"
-
wrap ld-solaris ${./ld-solaris-wrapper.sh}
'')
+ ''
-
# Create a symlink to as (the assembler). This is useful when a
-
# cc-wrapper is installed in a user environment, as it ensures that
-
# the right assembler is called.
-
if [ -e $ldPath/${targetPrefix}as ]; then
-
ln -s $ldPath/${targetPrefix}as $out/bin/${targetPrefix}as
-
fi
-
-
'' + (if !useMacosReexportHack then ''
-
wrap ${targetPrefix}ld ${./ld-wrapper.sh} ''${ld:-$ldPath/${targetPrefix}ld}
-
'' else ''
-
ldInner="${targetPrefix}ld-reexport-delegate"
-
wrap "$ldInner" ${./macos-sierra-reexport-hack.bash} ''${ld:-$ldPath/${targetPrefix}ld}
-
wrap "${targetPrefix}ld" ${./ld-wrapper.sh} "$out/bin/$ldInner"
-
unset ldInner
-
'') + ''
-
-
if [ -e ${binutils_bin}/bin/${targetPrefix}ld.gold ]; then
-
wrap ${targetPrefix}ld.gold ${./ld-wrapper.sh} ${binutils_bin}/bin/${targetPrefix}ld.gold
-
fi
-
-
if [ -e ${binutils_bin}/bin/ld.bfd ]; then
-
wrap ${targetPrefix}ld.bfd ${./ld-wrapper.sh} ${binutils_bin}/bin/${targetPrefix}ld.bfd
-
fi
# We export environment variables pointing to the wrapped nonstandard
# cmds, lest some lousy configure script use those to guess compiler
···
ln -s $ccPath/${targetPrefix}ghdl $out/bin/${targetPrefix}ghdl
'';
-
propagatedBuildInputs = extraPackages;
setupHook = ./setup-hook.sh;
postFixup =
''
set -u
''
-
+ optionalString (libc != null) (''
##
## General libc support
##
···
# compile, because it uses "#include_next <limits.h>" to find the
# limits.h file in ../includes-fixed. To remedy the problem,
# another -idirafter is necessary to add that directory again.
-
echo "-B${libc_lib}/lib/ -idirafter ${libc_dev}/include -idirafter ${cc}/lib/gcc/*/*/include-fixed" > $out/nix-support/libc-cflags
-
-
echo "-L${libc_lib}/lib" > $out/nix-support/libc-ldflags
echo "${libc_lib}" > $out/nix-support/orig-libc
echo "${libc_dev}" > $out/nix-support/orig-libc-dev
-
-
##
-
## Dynamic linker support
-
##
-
-
if [[ -z ''${dynamicLinker+x} ]]; then
-
echo "Don't know the name of the dynamic linker for platform '${targetPlatform.config}', so guessing instead." >&2
-
local dynamicLinker="${libc_lib}/lib/ld*.so.?"
-
fi
-
-
# Expand globs to fill array of options
-
dynamicLinker=($dynamicLinker)
-
-
case ''${#dynamicLinker[@]} in
-
0) echo "No dynamic linker found for platform '${targetPlatform.config}'." >&2;;
-
1) echo "Using dynamic linker: '$dynamicLinker'" >&2;;
-
*) echo "Multiple dynamic linkers found for platform '${targetPlatform.config}'." >&2;;
-
esac
-
-
if [ -n "''${dynamicLinker:-}" ]; then
-
echo $dynamicLinker > $out/nix-support/dynamic-linker
-
-
'' + (if targetPlatform.isDarwin then ''
-
printf "export LD_DYLD_PATH=%q\n" "$dynamicLinker" >> $out/nix-support/setup-hook
-
'' else ''
-
if [ -e ${libc_lib}/lib/32/ld-linux.so.2 ]; then
-
echo ${libc_lib}/lib/32/ld-linux.so.2 > $out/nix-support/dynamic-linker-m32
-
fi
-
-
local ldflagsBefore=(-dynamic-linker "$dynamicLinker")
-
'') + ''
-
fi
-
-
# The dynamic linker is passed in `ldflagsBefore' to allow
-
# explicit overrides of the dynamic linker by callers to gcc/ld
-
# (the *last* value counts, so ours should come first).
-
printWords "''${ldflagsBefore[@]}" > $out/nix-support/libc-ldflags-before
-
'')
+ optionalString (!nativeTools) ''
···
# Propagate the wrapped cc so that if you install the wrapper,
# you get tools like gcov, the manpages, etc. as well (including
# for binutils and Glibc).
-
printWords ${cc} ${binutils_bin} ${if libc == null then "" else libc_bin} > $out/nix-support/propagated-user-env-packages
printWords ${cc.man or ""} > $man/nix-support/propagated-user-env-packages
''
···
## Hardening support
##
-
# some linkers on some platforms don't support specific -z flags
export hardening_unsupported_flags=""
-
if [[ "$($ldPath/${targetPrefix}ld -z now 2>&1 || true)" =~ un(recognized|known)\ option ]]; then
-
hardening_unsupported_flags+=" bindnow"
-
fi
-
if [[ "$($ldPath/${targetPrefix}ld -z relro 2>&1 || true)" =~ un(recognized|known)\ option ]]; then
-
hardening_unsupported_flags+=" relro"
-
fi
''
+ optionalString hostPlatform.isCygwin ''
···
''
+ extraBuildCommands;
-
inherit dynamicLinker expand-response-params;
# for substitution in utils.sh
expandResponseParams = "${expand-response-params}/bin/expand-response-params";
···
{ description =
stdenv.lib.attrByPath ["meta" "description"] "System C compiler" cc_
+ " (wrapper script)";
-
} // optionalAttrs useMacosReexportHack {
-
platforms = stdenv.lib.platforms.darwin;
};
}
···
# compiler and the linker just "work".
{ name ? "", stdenvNoCC, nativeTools, noLibc ? false, nativeLibc, nativePrefix ? ""
+
, cc ? null, libc ? null, bintools, coreutils ? null, shell ? stdenvNoCC.shell
, zlib ? null, extraPackages ? [], extraBuildCommands ? ""
, isGNU ? false, isClang ? cc.isClang or false, gnugrep ? null
, buildPackages ? {}
}:
with stdenvNoCC.lib;
assert nativeTools -> nativePrefix != "";
assert !nativeTools ->
+
cc != null && coreutils != null && gnugrep != null;
assert !(nativeLibc && noLibc);
assert (noLibc || nativeLibc) == (libc == null);
···
libc_dev = if libc == null then null else getDev libc;
libc_lib = if libc == null then null else getLib libc;
cc_solib = getLib cc;
# The wrapper scripts use 'cat' and 'grep', so we may need coreutils.
coreutils_bin = if nativeTools then "" else getBin coreutils;
···
# unstable implementation detail, however.
infixSalt = dashlessTarget;
expand-response-params =
if buildPackages.stdenv.cc or null != null && buildPackages.stdenv.cc != "/dev/null"
then import ../expand-response-params { inherit (buildPackages) stdenv; }
···
in
+
# Ensure bintools matches
+
assert libc_bin == bintools.libc_bin;
+
assert libc_dev == bintools.libc_dev;
+
assert libc_lib == bintools.libc_lib;
+
assert nativeTools == bintools.nativeTools;
+
assert nativeLibc == bintools.nativeLibc;
+
assert nativePrefix == bintools.nativePrefix;
+
stdenv.mkDerivation {
name = targetPrefix
+ (if name != "" then name else "${ccName}-wrapper")
···
preferLocalBuild = true;
+
inherit cc libc_bin libc_dev libc_lib bintools coreutils_bin;
+
shell = getBin shell + stdenv.lib.optionalString (stdenv ? shellPath) stdenv.shellPath;
gnugrep_bin = if nativeTools then "" else gnugrep;
inherit targetPrefix infixSalt;
···
passthru = {
# "cc" is the generic name for a C compiler, but there is no one for package
# providing the linker and related tools. The two we use now are GNU
+
# Binutils, and Apple's "cctools"; "bintools" as an attempt to find an
# unused middle-ground name that evokes both.
+
inherit bintools;
inherit libc nativeTools nativeLibc nativePrefix isGNU isClang default_cxx_stdlib_compile;
emacsBufferSetup = pkgs: ''
; We should handle propagation here too
+
(mapc
+
(lambda (arg)
+
(when (file-directory-p (concat arg "/include"))
+
(setenv "NIX_${infixSalt}_CFLAGS_COMPILE" (concat (getenv "NIX_${infixSalt}_CFLAGS_COMPILE") " -isystem " arg "/include"))))
+
'(${concatStringsSep " " (map (pkg: "\"${pkg}\"") pkgs)}))
'';
};
···
echo ${if targetPlatform.isDarwin then cc else nativePrefix} > $out/nix-support/orig-cc
ccPath="${if targetPlatform.isDarwin then cc else nativePrefix}/bin"
'' else ''
echo $cc > $out/nix-support/orig-cc
ccPath="${cc}/bin"
'')
+ ''
+
# Create symlinks to everything in the bintools wrapper.
+
for bbin in $bintools/bin/*; do
+
mkdir -p "$out/bin"
+
ln -s "$bbin" "$out/bin/$(basename $bbin)"
+
done
# We export environment variables pointing to the wrapped nonstandard
# cmds, lest some lousy configure script use those to guess compiler
···
ln -s $ccPath/${targetPrefix}ghdl $out/bin/${targetPrefix}ghdl
'';
+
propagatedBuildInputs = [ bintools ] ++ extraPackages;
setupHook = ./setup-hook.sh;
postFixup =
''
set -u
+
+
# Backwards compatability for packages expecting this file, e.g. with
+
# `$NIX_CC/nix-support/dynamic-linker`.
+
#
+
# TODO(@Ericson2314): Remove this after stable release and force
+
# everyone to refer to bintools-wrapper directly.
+
if [[ -f "$bintools/nix-support/dynamic-linker" ]]; then
+
ln -s "$bintools/nix-support/dynamic-linker" "$out/nix-support"
+
fi
+
if [[ -f "$bintools/nix-support/dynamic-linker-m32" ]]; then
+
ln -s "$bintools/nix-support/dynamic-linker-m32" "$out/nix-support"
+
fi
''
+
+ optionalString (libc != null) ''
##
## General libc support
##
···
# compile, because it uses "#include_next <limits.h>" to find the
# limits.h file in ../includes-fixed. To remedy the problem,
# another -idirafter is necessary to add that directory again.
+
echo "-B${libc_lib}/lib/ -idirafter ${libc_dev}/include ${optionalString isGNU "-idirafter ${cc}/lib/gcc/*/*/include-fixed"}" > $out/nix-support/libc-cflags
echo "${libc_lib}" > $out/nix-support/orig-libc
echo "${libc_dev}" > $out/nix-support/orig-libc-dev
+
''
+ optionalString (!nativeTools) ''
···
# Propagate the wrapped cc so that if you install the wrapper,
# you get tools like gcov, the manpages, etc. as well (including
# for binutils and Glibc).
printWords ${cc.man or ""} > $man/nix-support/propagated-user-env-packages
''
···
## Hardening support
##
export hardening_unsupported_flags=""
''
+ optionalString hostPlatform.isCygwin ''
···
''
+ extraBuildCommands;
+
inherit expand-response-params;
# for substitution in utils.sh
expandResponseParams = "${expand-response-params}/bin/expand-response-params";
···
{ description =
stdenv.lib.attrByPath ["meta" "description"] "System C compiler" cc_
+ " (wrapper script)";
};
}
+2 -6
pkgs/build-support/cc-wrapper/gnat-wrapper.sh
···
PATH="@coreutils_bin@/bin"
fi
if [ -z "${NIX_@infixSalt@_GNAT_WRAPPER_FLAGS_SET:-}" ]; then
source @out@/nix-support/add-flags.sh
fi
-
-
source @out@/nix-support/utils.sh
# Figure out if linker flags should be passed. GCC prints annoying
···
dontLink=1
elif [ "${i:0:1}" != - ]; then
nonFlagArgs=1
-
elif [ "$i" = -m32 ]; then
-
if [ -e @out@/nix-support/dynamic-linker-m32 ]; then
-
NIX_@infixSalt@_LDFLAGS+=" -dynamic-linker $(< @out@/nix-support/dynamic-linker-m32)"
-
fi
fi
done
···
PATH="@coreutils_bin@/bin"
fi
+
source @out@/nix-support/utils.sh
+
if [ -z "${NIX_@infixSalt@_GNAT_WRAPPER_FLAGS_SET:-}" ]; then
source @out@/nix-support/add-flags.sh
fi
# Figure out if linker flags should be passed. GCC prints annoying
···
dontLink=1
elif [ "${i:0:1}" != - ]; then
nonFlagArgs=1
fi
done
-29
pkgs/build-support/cc-wrapper/ld-solaris-wrapper.sh
···
-
#!@shell@
-
set -eu -o pipefail
-
shopt -s nullglob
-
-
if (( "${NIX_DEBUG:-0}" >= 7 )); then
-
set -x
-
fi
-
-
declare -a args=("$@")
-
# I've also tried adding -z direct and -z lazyload, but it gave too many problems with C++ exceptions :'(
-
# Also made sure libgcc would not be lazy-loaded, as suggested here: https://www.illumos.org/issues/2534#note-3
-
# but still no success.
-
declare -a argsBefore=(-z ignore) argsAfter=()
-
-
# This loop makes sure all -L arguments are before -l arguments, or ld may complain it cannot find a library.
-
# GNU binutils does not have this problem:
-
# http://stackoverflow.com/questions/5817269/does-the-order-of-l-and-l-options-in-the-gnu-linker-matter
-
while (( $# )); do
-
case "${args[$i]}" in
-
-L) argsBefore+=("$1" "$2"); shift ;;
-
-L?*) argsBefore+=("$1") ;;
-
*) argsAfter+=("$1") ;;
-
esac
-
shift
-
done
-
-
# Trace:
-
set -x
-
exec "@ld@" "${argsBefore[@]}" "${argsAfter[@]}"
···
+3 -3
pkgs/build-support/cc-wrapper/ld-wrapper.sh pkgs/build-support/bintools-wrapper/ld-wrapper.sh
···
PATH="@coreutils_bin@/bin"
fi
-
if [ -z "${NIX_CC_WRAPPER_@infixSalt@_FLAGS_SET:-}" ]; then
source @out@/nix-support/add-flags.sh
fi
-
-
source @out@/nix-support/utils.sh
# Optionally filter out paths not refering to the store.
···
PATH="@coreutils_bin@/bin"
fi
+
source @out@/nix-support/utils.sh
+
+
if [ -z "${NIX_BINTOOLS_WRAPPER_@infixSalt@_FLAGS_SET:-}" ]; then
source @out@/nix-support/add-flags.sh
fi
# Optionally filter out paths not refering to the store.
+3 -1
pkgs/build-support/cc-wrapper/macos-sierra-reexport-hack.bash pkgs/build-support/bintools-wrapper/macos-sierra-reexport-hack.bash
···
symbolBloatObject=$outputNameLibless-symbol-hack.o
if [[ ! -e $symbolBloatObject ]]; then
printf '.private_extern _______child_hack_foo\nchild_hack_foo:\n' \
-
| @targetPrefix@as -- -o $symbolBloatObject
fi
# first half of libs
···
symbolBloatObject=$outputNameLibless-symbol-hack.o
if [[ ! -e $symbolBloatObject ]]; then
+
# `-Q` means use GNU Assembler rather than Clang, avoiding an awkward
+
# dependency cycle.
printf '.private_extern _______child_hack_foo\nchild_hack_foo:\n' \
+
| @targetPrefix@as -Q -- -o $symbolBloatObject
fi
# first half of libs
+1 -26
pkgs/build-support/cc-wrapper/setup-hook.sh
···
export NIX_${role}CFLAGS_COMPILE+=" ${ccIncludeFlag:--isystem} $1/include"
fi
-
if [[ -d "$1/lib64" && ! -L "$1/lib64" ]]; then
-
export NIX_${role}LDFLAGS+=" -L$1/lib64"
-
fi
-
-
if [[ -d "$1/lib" ]]; then
-
export NIX_${role}LDFLAGS+=" -L$1/lib"
-
fi
-
if [[ -d "$1/Library/Frameworks" ]]; then
export NIX_${role}CFLAGS_COMPILE+=" -F$1/Library/Frameworks"
fi
···
fi
# shellcheck disable=SC2157
-
if [ -n "@binutils_bin@" ]; then
-
addToSearchPath _PATH @binutils_bin@/bin
-
fi
-
-
# shellcheck disable=SC2157
if [ -n "@libc_bin@" ]; then
addToSearchPath _PATH @libc_bin@/bin
fi
···
export CC${role_post}=@named_cc@
export CXX${role_post}=@named_cxx@
-
for cmd in \
-
ar as ld nm objcopy objdump readelf ranlib strip strings size windres
-
do
-
if
-
PATH=$_PATH type -p "@targetPrefix@${cmd}" > /dev/null
-
then
-
upper_case="$(echo "$cmd" | tr "[:lower:]" "[:upper:]")"
-
export "${role_pre}${upper_case}=@targetPrefix@${cmd}";
-
export "${upper_case}${role_post}=@targetPrefix@${cmd}";
-
fi
-
done
-
# No local scope in sourced file
-
unset -v role_pre role_post cmd upper_case
···
export NIX_${role}CFLAGS_COMPILE+=" ${ccIncludeFlag:--isystem} $1/include"
fi
if [[ -d "$1/Library/Frameworks" ]]; then
export NIX_${role}CFLAGS_COMPILE+=" -F$1/Library/Frameworks"
fi
···
fi
# shellcheck disable=SC2157
if [ -n "@libc_bin@" ]; then
addToSearchPath _PATH @libc_bin@/bin
fi
···
export CC${role_post}=@named_cc@
export CXX${role_post}=@named_cxx@
# No local scope in sourced file
+
unset -v role_pre role_post
+32
pkgs/build-support/cc-wrapper/utils.sh
···
skip () {
if (( "${NIX_DEBUG:-0}" >= 1 )); then
echo "skipping impure path $1" >&2
···
+
mangleVarList() {
+
local var="$1"
+
shift
+
local -a role_infixes=("$@")
+
+
local outputVar="${var/+/_@infixSalt@_}"
+
declare -gx ${outputVar}+=''
+
# For each role we serve, we accumulate the input parameters into our own
+
# cc-wrapper-derivation-specific environment variables.
+
for infix in "${role_infixes[@]}"; do
+
local inputVar="${var/+/${infix}}"
+
if [ -v "$inputVar" ]; then
+
export ${outputVar}+="${!outputVar:+ }${!inputVar}"
+
fi
+
done
+
}
+
+
mangleVarBool() {
+
local var="$1"
+
shift
+
local -a role_infixes=("$@")
+
+
local outputVar="${var/+/_@infixSalt@_}"
+
declare -gxi ${outputVar}+=0
+
for infix in "${role_infixes[@]}"; do
+
local inputVar="${var/+/${infix}}"
+
if [ -v "$inputVar" ]; then
+
let "${outputVar} |= ${!inputVar}"
+
fi
+
done
+
}
+
skip () {
if (( "${NIX_DEBUG:-0}" >= 1 )); then
echo "skipping impure path $1" >&2
+5
pkgs/build-support/setup-hooks/ld-is-cc-hook.sh
···
···
+
ld-is-cc-hook() {
+
LD=$CC
+
}
+
+
preConfigureHooks+=(ld-is-cc-hook)
+3 -3
pkgs/build-support/setup-hooks/separate-debug-info.sh
···
if ! isELF "$i"; then continue; fi
# Extract the Build ID. FIXME: there's probably a cleaner way.
-
local id="$(readelf -n "$i" | sed 's/.*Build ID: \([0-9a-f]*\).*/\1/; t; d')"
if [ "${#id}" != 40 ]; then
echo "could not find build ID of $i, skipping" >&2
continue
···
# Extract the debug info.
header "separating debug info from $i (build ID $id)"
mkdir -p "$dst/${id:0:2}"
-
objcopy --only-keep-debug "$i" "$dst/${id:0:2}/${id:2}.debug"
-
strip --strip-debug "$i"
# Also a create a symlink <original-name>.debug.
ln -sfn ".build-id/${id:0:2}/${id:2}.debug" "$dst/../$(basename "$i")"
···
if ! isELF "$i"; then continue; fi
# Extract the Build ID. FIXME: there's probably a cleaner way.
+
local id="$($READELF -n "$i" | sed 's/.*Build ID: \([0-9a-f]*\).*/\1/; t; d')"
if [ "${#id}" != 40 ]; then
echo "could not find build ID of $i, skipping" >&2
continue
···
# Extract the debug info.
header "separating debug info from $i (build ID $id)"
mkdir -p "$dst/${id:0:2}"
+
$OBJCOPY --only-keep-debug "$i" "$dst/${id:0:2}/${id:2}.debug"
+
$STRIP --strip-debug "$i"
# Also a create a symlink <original-name>.debug.
ln -sfn ".build-id/${id:0:2}/${id:2}.debug" "$dst/../$(basename "$i")"
+1 -1
pkgs/build-support/setup-hooks/strip.sh
···
if [ -n "${dirs}" ]; then
header "stripping (with flags $stripFlags) in$dirs"
-
find $dirs -type f -print0 | xargs -0 ${xargsFlags:--r} strip $commonStripFlags $stripFlags 2>/dev/null || true
stopNest
fi
}
···
if [ -n "${dirs}" ]; then
header "stripping (with flags $stripFlags) in$dirs"
+
find $dirs -type f -print0 | xargs -0 ${xargsFlags:--r} $STRIP $commonStripFlags $stripFlags 2>/dev/null || true
stopNest
fi
}
+1 -1
pkgs/build-support/setup-hooks/win-dll-link.sh
···
linkCount=0
# Iterate over any DLL that we depend on.
local dll
-
for dll in $(objdump -p *.{exe,dll} | sed -n 's/.*DLL Name: \(.*\)/\1/p' | sort -u); do
if [ -e "./$dll" ]; then continue; fi
# Locate the DLL - it should be an *executable* file on $DLLPATH.
local dllPath="$(PATH="$DLLPATH" type -P "$dll")"
···
linkCount=0
# Iterate over any DLL that we depend on.
local dll
+
for dll in $($OBJDUMP -p *.{exe,dll} | sed -n 's/.*DLL Name: \(.*\)/\1/p' | sort -u); do
if [ -e "./$dll" ]; then continue; fi
# Locate the DLL - it should be an *executable* file on $DLLPATH.
local dllPath="$(PATH="$DLLPATH" type -P "$dll")"
+2 -2
pkgs/build-support/trivial-builders.nix
···
# Make a package that just contains a setup hook with the given contents.
-
makeSetupHook = { deps ? [], substitutions ? {} }: script:
-
runCommand "hook" substitutions
(''
mkdir -p $out/nix-support
cp ${script} $out/nix-support/setup-hook
···
# Make a package that just contains a setup hook with the given contents.
+
makeSetupHook = { name ? "hook", deps ? [], substitutions ? {} }: script:
+
runCommand name substitutions
(''
mkdir -p $out/nix-support
cp ${script} $out/nix-support/setup-hook
+3 -1
pkgs/development/compilers/emscripten-fastcomp/default.nix
···
-
{ newScope, stdenv, wrapCC, wrapCCWith, symlinkJoin }:
let
callPackage = newScope (self // {inherit stdenv;});
···
emscriptenfastcomp-unwrapped = callPackage ./emscripten-fastcomp.nix {};
emscriptenfastcomp-wrapped = wrapCCWith {
cc = self.emscriptenfastcomp-unwrapped;
libc = stdenv.cc.libc;
extraBuildCommands = ''
# hardening flags break WASM support
···
+
{ newScope, stdenv, binutils-raw, wrapCCWith, symlinkJoin }:
let
callPackage = newScope (self // {inherit stdenv;});
···
emscriptenfastcomp-unwrapped = callPackage ./emscripten-fastcomp.nix {};
emscriptenfastcomp-wrapped = wrapCCWith {
cc = self.emscriptenfastcomp-unwrapped;
+
# Never want Apple's cctools for WASM target
+
bintools = binutils-raw;
libc = stdenv.cc.libc;
extraBuildCommands = ''
# hardening flags break WASM support
+1
pkgs/development/compilers/gcc/4.5/default.nix
···
dontStrip = true;
};
NIX_BUILD_CC = buildPackages.stdenv.cc;
# Needed for the cross compilation to work
···
dontStrip = true;
};
+
NIX_BUILD_BINTOOLS = buildPackages.stdenv.cc.bintools;
NIX_BUILD_CC = buildPackages.stdenv.cc;
# Needed for the cross compilation to work
+1
pkgs/development/compilers/gcc/4.8/default.nix
···
buildFlags = "";
};
NIX_BUILD_CC = buildPackages.stdenv.cc;
# Needed for the cross compilation to work
···
buildFlags = "";
};
+
NIX_BUILD_BINTOOLS = buildPackages.stdenv.cc.bintools;
NIX_BUILD_CC = buildPackages.stdenv.cc;
# Needed for the cross compilation to work
+1
pkgs/development/compilers/gcc/4.9/default.nix
···
buildFlags = "";
};
NIX_BUILD_CC = buildPackages.stdenv.cc;
# Needed for the cross compilation to work
···
buildFlags = "";
};
+
NIX_BUILD_BINTOOLS = buildPackages.stdenv.cc.bintools;
NIX_BUILD_CC = buildPackages.stdenv.cc;
# Needed for the cross compilation to work
+1
pkgs/development/compilers/gcc/5/default.nix
···
buildFlags = "";
};
NIX_BUILD_CC = buildPackages.stdenv.cc;
# Needed for the cross compilation to work
···
buildFlags = "";
};
+
NIX_BUILD_BINTOOLS = buildPackages.stdenv.cc.bintools;
NIX_BUILD_CC = buildPackages.stdenv.cc;
# Needed for the cross compilation to work
+1
pkgs/development/compilers/gcc/6/default.nix
···
buildFlags = "";
};
NIX_BUILD_CC = buildPackages.stdenv.cc;
# Needed for the cross compilation to work
···
buildFlags = "";
};
+
NIX_BUILD_BINTOOLS = buildPackages.stdenv.cc.bintools;
NIX_BUILD_CC = buildPackages.stdenv.cc;
# Needed for the cross compilation to work
+1
pkgs/development/compilers/gcc/7/default.nix
···
buildFlags = "";
};
NIX_BUILD_CC = buildPackages.stdenv.cc;
# Needed for the cross compilation to work
···
buildFlags = "";
};
+
NIX_BUILD_BINTOOLS = buildPackages.stdenv.cc.bintools;
NIX_BUILD_CC = buildPackages.stdenv.cc;
# Needed for the cross compilation to work
+35 -20
pkgs/development/compilers/gcc/builder.sh
···
if test "$staticCompiler" = "1"; then
EXTRA_LDFLAGS="-static"
else
-
EXTRA_LDFLAGS="-Wl,-rpath,$lib/lib"
fi
···
EXTRA_BUILD_FLAGS EXTRA_FLAGS EXTRA_TARGET_FLAGS \
EXTRA_BUILD_LDFLAGS EXTRA_TARGET_LDFLAGS
for pre in 'BUILD_' ''; do
curCC="NIX_${pre}CC"
curFIXINC="NIX_${pre}FIXINC_DUMMY"
-
declare -a extraFlags=() extraLDFlags=()
if [[ -e "${!curCC}/nix-support/orig-libc" ]]; then
-
# Figure out what extra flags to pass to the gcc compilers being
-
# generated to make sure that they use our glibc.
-
extraFlags=($(cat "${!curCC}/nix-support/libc-cflags"))
-
extraLDFlags=($(cat "${!curCC}/nix-support/libc-ldflags") $(cat "${!curCC}/nix-support/libc-ldflags-before" || true))
-
# The path to the Glibc binaries such as `crti.o'.
-
glibc_libdir="$(cat "${!curCC}/nix-support/orig-libc")/lib"
-
glibc_devdir="$(cat "${!curCC}/nix-support/orig-libc-dev")"
# Use *real* header files, otherwise a limits.h is generated that
-
# does not include Glibc's limits.h (notably missing SSIZE_MAX,
# which breaks the build).
-
declare NIX_${pre}FIXINC_DUMMY="$glibc_devdir/include"
else
# Hack: support impure environments.
extraFlags=("-isystem" "/usr/include")
-
extraLDFlags=("-L/usr/lib64" "-L/usr/lib")
-
glibc_libdir="/usr/lib"
declare NIX_${pre}FIXINC_DUMMY=/usr/include
fi
-
extraFlags=("-I${!curFIXINC}"
-
"${extraFlags[@]}")
-
extraLDFlags=("-L$glibc_libdir" "-rpath" "$glibc_libdir"
-
"${extraLDFlags[@]}")
# BOOT_CFLAGS defaults to `-g -O2'; since we override it below, make
# sure to explictly add them so that files compiled with the bootstrap
···
fi
declare EXTRA_${pre}FLAGS="${extraFlags[*]}"
-
for i in "${extraLDFlags[@]}"; do
-
declare EXTRA_${pre}LDFLAGS+=" -Wl,$i"
-
done
done
if test -z "${targetConfig-}"; then
···
if test "$staticCompiler" = "1"; then
EXTRA_LDFLAGS="-static"
else
+
EXTRA_LDFLAGS="-Wl,-rpath,${!outputLib}/lib"
fi
···
EXTRA_BUILD_FLAGS EXTRA_FLAGS EXTRA_TARGET_FLAGS \
EXTRA_BUILD_LDFLAGS EXTRA_TARGET_LDFLAGS
+
# Extract flags from Bintools Wrappers
+
for pre in 'BUILD_' ''; do
+
curBintools="NIX_${pre}BINTOOLS"
+
+
declare -a extraLDFlags=()
+
if [[ -e "${!curBintools}/nix-support/orig-libc" ]]; then
+
# Figure out what extra flags when linking to pass to the gcc
+
# compilers being generated to make sure that they use our libc.
+
extraLDFlags=($(< "${!curBintools}/nix-support/libc-ldflags") $(< "${!curBintools}/nix-support/libc-ldflags-before" || true))
+
+
# The path to the Libc binaries such as `crti.o'.
+
libc_libdir="$(< "${!curBintools}/nix-support/orig-libc")/lib"
+
else
+
# Hack: support impure environments.
+
extraLDFlags=("-L/usr/lib64" "-L/usr/lib")
+
libc_libdir="/usr/lib"
+
fi
+
extraLDFlags=("-L$libc_libdir" "-rpath" "$libc_libdir"
+
"${extraLDFlags[@]}")
+
for i in "${extraLDFlags[@]}"; do
+
declare EXTRA_${pre}LDFLAGS+=" -Wl,$i"
+
done
+
done
+
+
# Extract flags from CC Wrappers
for pre in 'BUILD_' ''; do
curCC="NIX_${pre}CC"
curFIXINC="NIX_${pre}FIXINC_DUMMY"
+
declare -a extraFlags=()
if [[ -e "${!curCC}/nix-support/orig-libc" ]]; then
+
# Figure out what extra compiling flags to pass to the gcc compilers
+
# being generated to make sure that they use our libc.
+
extraFlags=($(< "${!curCC}/nix-support/libc-cflags"))
+
# The path to the Libc headers
+
libc_devdir="$(< "${!curCC}/nix-support/orig-libc-dev")"
# Use *real* header files, otherwise a limits.h is generated that
+
# does not include Libc's limits.h (notably missing SSIZE_MAX,
# which breaks the build).
+
declare NIX_${pre}FIXINC_DUMMY="$libc_devdir/include"
else
# Hack: support impure environments.
extraFlags=("-isystem" "/usr/include")
declare NIX_${pre}FIXINC_DUMMY=/usr/include
fi
+
extraFlags=("-I${!curFIXINC}" "${extraFlags[@]}")
# BOOT_CFLAGS defaults to `-g -O2'; since we override it below, make
# sure to explictly add them so that files compiled with the bootstrap
···
fi
declare EXTRA_${pre}FLAGS="${extraFlags[*]}"
done
if test -z "${targetConfig-}"; then
+1
pkgs/development/compilers/gcc/snapshot/default.nix
···
buildFlags = "";
};
NIX_BUILD_CC = buildPackages.stdenv.cc;
# Needed for the cross compilation to work
···
buildFlags = "";
};
+
NIX_BUILD_BINTOOLS = buildPackages.stdenv.cc.bintools;
NIX_BUILD_CC = buildPackages.stdenv.cc;
# Needed for the cross compilation to work
+2 -2
pkgs/development/compilers/llvm/3.7/default.nix
···
libstdcxxClang = ccWrapperFun {
cc = self.clang-unwrapped;
/* FIXME is this right? */
-
inherit (stdenv.cc) libc nativeTools nativeLibc;
extraPackages = [ libstdcxxHook ];
};
libcxxClang = ccWrapperFun {
cc = self.clang-unwrapped;
/* FIXME is this right? */
-
inherit (stdenv.cc) libc nativeTools nativeLibc;
extraPackages = [ self.libcxx self.libcxxabi ];
};
···
libstdcxxClang = ccWrapperFun {
cc = self.clang-unwrapped;
/* FIXME is this right? */
+
inherit (stdenv.cc) bintools libc nativeTools nativeLibc;
extraPackages = [ libstdcxxHook ];
};
libcxxClang = ccWrapperFun {
cc = self.clang-unwrapped;
/* FIXME is this right? */
+
inherit (stdenv.cc) bintools libc nativeTools nativeLibc;
extraPackages = [ self.libcxx self.libcxxabi ];
};
+2 -2
pkgs/development/compilers/llvm/3.8/default.nix
···
libstdcxxClang = ccWrapperFun {
cc = self.clang-unwrapped;
/* FIXME is this right? */
-
inherit (stdenv.cc) libc nativeTools nativeLibc;
extraPackages = [ libstdcxxHook ];
};
libcxxClang = ccWrapperFun {
cc = self.clang-unwrapped;
/* FIXME is this right? */
-
inherit (stdenv.cc) libc nativeTools nativeLibc;
extraPackages = [ self.libcxx self.libcxxabi ];
};
···
libstdcxxClang = ccWrapperFun {
cc = self.clang-unwrapped;
/* FIXME is this right? */
+
inherit (stdenv.cc) bintools libc nativeTools nativeLibc;
extraPackages = [ libstdcxxHook ];
};
libcxxClang = ccWrapperFun {
cc = self.clang-unwrapped;
/* FIXME is this right? */
+
inherit (stdenv.cc) bintools libc nativeTools nativeLibc;
extraPackages = [ self.libcxx self.libcxxabi ];
};
+2 -2
pkgs/development/compilers/llvm/3.9/default.nix
···
libstdcxxClang = ccWrapperFun {
cc = self.clang-unwrapped;
/* FIXME is this right? */
-
inherit (stdenv.cc) libc nativeTools nativeLibc;
extraPackages = [ libstdcxxHook ];
};
libcxxClang = ccWrapperFun {
cc = self.clang-unwrapped;
/* FIXME is this right? */
-
inherit (stdenv.cc) libc nativeTools nativeLibc;
extraPackages = [ self.libcxx self.libcxxabi ];
};
···
libstdcxxClang = ccWrapperFun {
cc = self.clang-unwrapped;
/* FIXME is this right? */
+
inherit (stdenv.cc) bintools libc nativeTools nativeLibc;
extraPackages = [ libstdcxxHook ];
};
libcxxClang = ccWrapperFun {
cc = self.clang-unwrapped;
/* FIXME is this right? */
+
inherit (stdenv.cc) bintools libc nativeTools nativeLibc;
extraPackages = [ self.libcxx self.libcxxabi ];
};
+2 -2
pkgs/development/compilers/llvm/4/default.nix
···
libstdcxxClang = ccWrapperFun {
cc = self.clang-unwrapped;
/* FIXME is this right? */
-
inherit (stdenv.cc) libc nativeTools nativeLibc;
extraPackages = [ libstdcxxHook ];
};
libcxxClang = ccWrapperFun {
cc = self.clang-unwrapped;
/* FIXME is this right? */
-
inherit (stdenv.cc) libc nativeTools nativeLibc;
extraPackages = [ self.libcxx self.libcxxabi ];
};
···
libstdcxxClang = ccWrapperFun {
cc = self.clang-unwrapped;
/* FIXME is this right? */
+
inherit (stdenv.cc) bintools libc nativeTools nativeLibc;
extraPackages = [ libstdcxxHook ];
};
libcxxClang = ccWrapperFun {
cc = self.clang-unwrapped;
/* FIXME is this right? */
+
inherit (stdenv.cc) bintools libc nativeTools nativeLibc;
extraPackages = [ self.libcxx self.libcxxabi ];
};
+2 -2
pkgs/development/compilers/llvm/5/default.nix
···
libstdcxxClang = ccWrapperFun {
cc = self.clang-unwrapped;
/* FIXME is this right? */
-
inherit (stdenv.cc) libc nativeTools nativeLibc;
extraPackages = [ libstdcxxHook ];
};
libcxxClang = ccWrapperFun {
cc = self.clang-unwrapped;
/* FIXME is this right? */
-
inherit (stdenv.cc) libc nativeTools nativeLibc;
extraPackages = [ self.libcxx self.libcxxabi ];
};
···
libstdcxxClang = ccWrapperFun {
cc = self.clang-unwrapped;
/* FIXME is this right? */
+
inherit (stdenv.cc) bintools libc nativeTools nativeLibc;
extraPackages = [ libstdcxxHook ];
};
libcxxClang = ccWrapperFun {
cc = self.clang-unwrapped;
/* FIXME is this right? */
+
inherit (stdenv.cc) bintools libc nativeTools nativeLibc;
extraPackages = [ self.libcxx self.libcxxabi ];
};
+48
pkgs/development/compilers/llvm/multi.nix
···
···
+
{ runCommand,
+
clang,
+
gcc64,
+
gcc32,
+
glibc_multi
+
}:
+
+
let
+
combine = basegcc: runCommand "combine-gcc-libc" {} ''
+
mkdir -p $out
+
cp -r ${basegcc.cc}/lib $out/lib
+
+
chmod u+rw -R $out/lib
+
cp -r ${basegcc.libc}/lib/* $(ls -d $out/lib/gcc/*/*)
+
'';
+
gcc_multi_sysroot = runCommand "gcc-multi-sysroot" {} ''
+
mkdir -p $out/lib/gcc
+
+
ln -s ${combine gcc64}/lib/gcc/* $out/lib/gcc/
+
ln -s ${combine gcc32}/lib/gcc/* $out/lib/gcc/
+
# XXX: This shouldn't be needed, clang just doesn't look for "i686-unknown"
+
ln -s $out/lib/gcc/i686-unknown-linux-gnu $out/lib/gcc/i686-pc-linux-gnu
+
+
+
# includes
+
ln -s ${glibc_multi.dev}/include $out/
+
+
# dynamic linkers
+
mkdir -p $out/lib/32
+
ln -s ${glibc_multi.out}/lib/ld-linux* $out/lib
+
ln -s ${glibc_multi.out}/lib/32/ld-linux* $out/lib/32/
+
'';
+
+
clangMulti = clang.override {
+
# Only used for providing expected structure re:dynamic linkers, AFAIK
+
# Most of the magic is done by setting the --gcc-toolchain option below
+
libc = gcc_multi_sysroot;
+
+
bintools = clang.bintools.override {
+
libc = gcc_multi_sysroot;
+
};
+
+
extraBuildCommands = ''
+
sed -e '$a --gcc-toolchain=${gcc_multi_sysroot}' -i $out/nix-support/libc-cflags
+
'';
+
};
+
+
in clangMulti
+2 -2
pkgs/development/interpreters/python/build-python-package.nix
···
, setuptools
, unzip
, ensureNewerSourcesHook
-
, pythonModule
, namePrefix
, bootstrapped-pip
, flit
···
wheel-specific = import ./build-python-package-wheel.nix { };
common = import ./build-python-package-common.nix { inherit python bootstrapped-pip; };
mkPythonDerivation = import ./mk-python-derivation.nix {
-
inherit lib python wrapPython setuptools unzip ensureNewerSourcesHook pythonModule namePrefix;
};
in
···
, setuptools
, unzip
, ensureNewerSourcesHook
+
, toPythonModule
, namePrefix
, bootstrapped-pip
, flit
···
wheel-specific = import ./build-python-package-wheel.nix { };
common = import ./build-python-package-common.nix { inherit python bootstrapped-pip; };
mkPythonDerivation = import ./mk-python-derivation.nix {
+
inherit lib python wrapPython setuptools unzip ensureNewerSourcesHook toPythonModule namePrefix;
};
in
+14 -8
pkgs/development/interpreters/python/mk-python-derivation.nix
···
, unzip
, ensureNewerSourcesHook
# Whether the derivation provides a Python module or not.
-
, pythonModule
, namePrefix
}:
···
# Skip wrapping of python programs altogether
, dontWrapPythonPrograms ? false
, meta ? {}
, passthru ? {}
···
then throw "${name} not supported for interpreter ${python.executable}"
else
-
python.stdenv.mkDerivation (builtins.removeAttrs attrs [
"disabled" "checkInputs" "doCheck" "doInstallCheck" "dontWrapPythonPrograms" "catchConflicts"
] // {
···
postFixup = lib.optionalString (!dontWrapPythonPrograms) ''
wrapPythonPrograms
'' + lib.optionalString catchConflicts ''
# Check if we have two packages with the same name in the closure and fail.
# If this happens, something went wrong with the dependencies specs.
···
${python.interpreter} ${./catch_conflicts}/catch_conflicts.py
'' + attrs.postFixup or '''';
-
passthru = {
-
inherit python; # The python interpreter
-
inherit pythonModule;
-
} // passthru;
-
meta = {
# default to python's platforms
platforms = python.meta.platforms;
isBuildPythonPackage = python.meta.platforms;
} // meta;
-
})
···
, unzip
, ensureNewerSourcesHook
# Whether the derivation provides a Python module or not.
+
, toPythonModule
, namePrefix
}:
···
# Skip wrapping of python programs altogether
, dontWrapPythonPrograms ? false
+
# Remove bytecode from bin folder.
+
# When a Python script has the extension `.py`, bytecode is generated
+
# Typically, executables in bin have no extension, so no bytecode is generated.
+
# However, some packages do provide executables with extensions, and thus bytecode is generated.
+
, removeBinBytecode ? true
+
, meta ? {}
, passthru ? {}
···
then throw "${name} not supported for interpreter ${python.executable}"
else
+
toPythonModule (python.stdenv.mkDerivation (builtins.removeAttrs attrs [
"disabled" "checkInputs" "doCheck" "doInstallCheck" "dontWrapPythonPrograms" "catchConflicts"
] // {
···
postFixup = lib.optionalString (!dontWrapPythonPrograms) ''
wrapPythonPrograms
+
'' + lib.optionalString removeBinBytecode ''
+
if [ -d "$out/bin" ]; then
+
rm -rf "$out/bin/__pycache__" # Python 3
+
find "$out/bin" -type f -name "*.pyc" -delete # Python 2
+
fi
'' + lib.optionalString catchConflicts ''
# Check if we have two packages with the same name in the closure and fail.
# If this happens, something went wrong with the dependencies specs.
···
${python.interpreter} ${./catch_conflicts}/catch_conflicts.py
'' + attrs.postFixup or '''';
meta = {
# default to python's platforms
platforms = python.meta.platforms;
isBuildPythonPackage = python.meta.platforms;
} // meta;
+
}))
+2
pkgs/development/libraries/boost/1.65.nix
···
sha256 = "9807a5d16566c57fd74fb522764e0b134a8bbe6b6e8967b83afefd30dcd3be81";
};
})
···
sha256 = "9807a5d16566c57fd74fb522764e0b134a8bbe6b6e8967b83afefd30dcd3be81";
};
+
enableNumpy = true;
+
})
+2 -2
pkgs/development/libraries/boost/generic.nix
···
, enablePIC ? false
, enableExceptions ? false
, enablePython ? hostPlatform == buildPlatform
-
, enableNumpy ? false, numpy ? null
, taggedLayout ? ((enableRelease && enableDebug) || (enableSingleThreaded && enableMultiThreaded) || (enableShared && enableStatic))
, patches ? null
, mpi ? null
···
++ optional (hostPlatform == buildPlatform) icu
++ optional stdenv.isDarwin fixDarwinDylibNames
++ optional enablePython python
-
++ optional enableNumpy numpy;
configureScript = "./bootstrap.sh";
configureFlags = commonConfigureFlags
···
, enablePIC ? false
, enableExceptions ? false
, enablePython ? hostPlatform == buildPlatform
+
, enableNumpy ? false
, taggedLayout ? ((enableRelease && enableDebug) || (enableSingleThreaded && enableMultiThreaded) || (enableShared && enableStatic))
, patches ? null
, mpi ? null
···
++ optional (hostPlatform == buildPlatform) icu
++ optional stdenv.isDarwin fixDarwinDylibNames
++ optional enablePython python
+
++ optional enableNumpy python.pkgs.numpy;
configureScript = "./bootstrap.sh";
configureFlags = commonConfigureFlags
+11 -7
pkgs/development/libraries/fribidi/default.nix
···
-
{stdenv, fetchurl}:
stdenv.mkDerivation rec {
name = "fribidi-${version}";
version = "0.19.7";
-
src = fetchurl {
-
url = "http://fribidi.org/download/${name}.tar.bz2";
-
sha256 = "13jsb5qadlhsaxkbrb49nqslmbh904vvzhsm5mm2ghmv29i2l8h8";
};
-
hardeningDisable = [ "format" ];
outputs = [ "out" "devdoc" ];
meta = with stdenv.lib; {
-
homepage = http://fribidi.org/;
description = "GNU implementation of the Unicode Bidirectional Algorithm (bidi)";
-
license = licenses.gpl2;
platforms = platforms.unix;
};
}
···
+
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig }:
stdenv.mkDerivation rec {
name = "fribidi-${version}";
version = "0.19.7";
+
src = fetchFromGitHub {
+
owner = "fribidi";
+
repo = "fribidi";
+
rev = version;
+
sha256 = "10q5jfch5qzrj2w4fbkr086ank66plx8hp7ra9a01irj80pbk96d";
};
+
nativeBuildInputs = [ autoreconfHook pkgconfig ];
+
+
# Configure script checks for glib, but it is only used for tests.
outputs = [ "out" "devdoc" ];
meta = with stdenv.lib; {
+
homepage = https://github.com/fribidi/fribidi;
description = "GNU implementation of the Unicode Bidirectional Algorithm (bidi)";
+
license = licenses.lgpl21;
platforms = platforms.unix;
};
}
+2 -2
pkgs/development/libraries/gstreamer/vaapi/default.nix
···
stdenv.mkDerivation rec {
name = "gst-vaapi-${version}";
-
version = "1.12.3";
src = fetchurl {
url = "${meta.homepage}/src/gstreamer-vaapi/gstreamer-vaapi-${version}.tar.xz";
-
sha256 = "0kbl2c4zv004qwhm9mc0jlhz2pc3dqrng2vwj68a81lnzpcazkgl";
};
outputs = [ "out" "dev" ];
···
stdenv.mkDerivation rec {
name = "gst-vaapi-${version}";
+
version = "1.12.4";
src = fetchurl {
url = "${meta.homepage}/src/gstreamer-vaapi/gstreamer-vaapi-${version}.tar.xz";
+
sha256 = "1jg9nvc8000yi2bcl3wn2yh2hwl7yvlwldj6778w8c0z5qj7fb8w";
};
outputs = [ "out" "dev" ];
+2 -2
pkgs/development/libraries/libbfd/default.nix
···
stdenv.mkDerivation rec {
name = "libbfd-${version}";
-
inherit (binutils-raw) version src;
outputs = [ "out" "dev" ];
-
patches = binutils-raw.patches ++ [
../../tools/misc/binutils/build-components-separately.patch
];
···
stdenv.mkDerivation rec {
name = "libbfd-${version}";
+
inherit (binutils-raw.bintools) version src;
outputs = [ "out" "dev" ];
+
patches = binutils-raw.bintools.patches ++ [
../../tools/misc/binutils/build-components-separately.patch
];
+2 -2
pkgs/development/libraries/libjpeg-turbo/default.nix
···
stdenv.mkDerivation rec {
name = "libjpeg-turbo-${version}";
-
version = "1.5.2";
src = fetchurl {
url = "mirror://sourceforge/libjpeg-turbo/${name}.tar.gz";
-
sha256 = "0a5m0psfp5952y5vrcs0nbdz1y9wqzg2ms0xwrx752034wxr964h";
}; # github releases still need autotools, surprisingly
patches =
···
stdenv.mkDerivation rec {
name = "libjpeg-turbo-${version}";
+
version = "1.5.3";
src = fetchurl {
url = "mirror://sourceforge/libjpeg-turbo/${name}.tar.gz";
+
sha256 = "08r5b5mywwrxv4axvq80dm31cklz81grczlzlxr2xqa6pgi90j5j";
}; # github releases still need autotools, surprisingly
patches =
+2 -2
pkgs/development/libraries/libopcodes/default.nix
···
stdenv.mkDerivation rec {
name = "libopcodes-${version}";
-
inherit (binutils-raw) version src;
outputs = [ "out" "dev" ];
-
patches = binutils-raw.patches ++ [
../../tools/misc/binutils/build-components-separately.patch
];
···
stdenv.mkDerivation rec {
name = "libopcodes-${version}";
+
inherit (binutils-raw.bintools) version src;
outputs = [ "out" "dev" ];
+
patches = binutils-raw.bintools.patches ++ [
../../tools/misc/binutils/build-components-separately.patch
];
+1 -1
pkgs/development/libraries/libstdc++5/default.nix
···
# being generated to make sure that they use our glibc.
EXTRA_FLAGS="-I$NIX_FIXINC_DUMMY $(cat $NIX_CC/nix-support/libc-cflags) -O2"
-
extraLDFlags="-L$glibc_libdir -rpath $glibc_libdir $(cat $NIX_CC/nix-support/libc-ldflags) $(cat $NIX_CC/nix-support/libc-ldflags-before)"
for i in $extraLDFlags; do
EXTRA_FLAGS="$EXTRA_FLAGS -Wl,$i"
done
···
# being generated to make sure that they use our glibc.
EXTRA_FLAGS="-I$NIX_FIXINC_DUMMY $(cat $NIX_CC/nix-support/libc-cflags) -O2"
+
extraLDFlags="-L$glibc_libdir -rpath $glibc_libdir $(cat $NIX_BINTOOLS/nix-support/libc-ldflags) $(cat $NIX_BINTOOLS/nix-support/libc-ldflags-before)"
for i in $extraLDFlags; do
EXTRA_FLAGS="$EXTRA_FLAGS -Wl,$i"
done
+2 -2
pkgs/development/libraries/libuv/default.nix
···
, ApplicationServices, CoreServices }:
stdenv.mkDerivation rec {
-
version = "1.16.1";
name = "libuv-${version}";
src = fetchFromGitHub {
owner = "libuv";
repo = "libuv";
rev = "v${version}";
-
sha256 = "06p3xy276spqbr9xzbs7qlpdk34qsn87s2qmp6xn4j7v3bnqja7z";
};
postPatch = let
···
, ApplicationServices, CoreServices }:
stdenv.mkDerivation rec {
+
version = "1.18.0";
name = "libuv-${version}";
src = fetchFromGitHub {
owner = "libuv";
repo = "libuv";
rev = "v${version}";
+
sha256 = "0s71c2y4ll3vp463hsdk74q4hr7wprkxc2a4agw3za2hhzcb95pd";
};
postPatch = let
+29
pkgs/development/libraries/libva-utils/default.nix
···
···
+
{ stdenv, lib, fetchFromGitHub, autoreconfHook, pkgconfig
+
, libdrm, libva
+
}:
+
+
stdenv.mkDerivation rec {
+
name = "libva-utils-${version}";
+
inherit (libva) version;
+
+
src = fetchFromGitHub {
+
owner = "01org";
+
repo = "libva-utils";
+
rev = version;
+
sha256 = "02n51cvp8bzzjk4fargwvgh7z71y8spg24hqgaawbp3p3ahh7xxi";
+
};
+
+
nativeBuildInputs = [ autoreconfHook pkgconfig ];
+
+
buildInputs = [ libdrm libva ];
+
+
enableParallelBuilding = true;
+
+
meta = with stdenv.lib; {
+
description = "VAAPI tools: Video Acceleration API";
+
homepage = http://www.freedesktop.org/wiki/Software/vaapi;
+
license = licenses.mit;
+
maintainers = with maintainers; [ garbas ];
+
platforms = platforms.unix;
+
};
+
}
+21 -14
pkgs/development/libraries/libva/default.nix
···
-
{ stdenv, lib, fetchurl, libX11, pkgconfig, libXext, libdrm, libXfixes, wayland, libffi
, mesa_noglu
, minimal ? true, libva
}:
stdenv.mkDerivation rec {
-
name = "libva-${version}";
-
version = "1.7.3";
-
src = fetchurl {
-
url = "http://www.freedesktop.org/software/vaapi/releases/libva/${name}.tar.bz2";
-
sha256 = "1ndrf136rlw03xag7j1xpmf9015d1h0dpnv6v587jnh6k2a17g12";
};
-
outputs = [ "bin" "dev" "out" ];
-
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ libdrm ]
++ lib.optionals (!minimal) [ libva libX11 libXext libXfixes wayland libffi mesa_noglu ];
# TODO: share libs between minimal and !minimal - perhaps just symlink them
-
configureFlags =
-
[ "--with-drivers-path=${mesa_noglu.driverLink}/lib/dri" ] ++
-
lib.optionals (!minimal) [ "--enable-glx" ];
-
installFlags = [ "dummy_drv_video_ladir=$(out)/lib/dri" ];
meta = with stdenv.lib; {
homepage = http://www.freedesktop.org/wiki/Software/vaapi;
license = licenses.mit;
-
description = "VAAPI library: Video Acceleration API";
-
platforms = platforms.unix;
maintainers = with maintainers; [ garbas ];
};
}
···
+
{ stdenv, lib, fetchFromGitHub, autoreconfHook, pkgconfig
+
, libXext, libdrm, libXfixes, wayland, libffi, libX11
, mesa_noglu
, minimal ? true, libva
}:
stdenv.mkDerivation rec {
+
name = "libva-${lib.optionalString (!minimal) "full-"}${version}";
+
version = "2.0.0";
+
src = fetchFromGitHub {
+
owner = "01org";
+
repo = "libva";
+
rev = version;
+
sha256 = "1x8rlmv5wfqjz3j87byrxb4d9vp5b4lrrin2fx254nwl3aqy15hy";
};
+
outputs = [ "dev" "out" ];
+
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ libdrm ]
++ lib.optionals (!minimal) [ libva libX11 libXext libXfixes wayland libffi mesa_noglu ];
# TODO: share libs between minimal and !minimal - perhaps just symlink them
+
enableParallelBuilding = true;
+
+
configureFlags = [
+
"--with-drivers-path=${mesa_noglu.driverLink}/lib/dri"
+
] ++ lib.optionals (!minimal) [ "--enable-glx" ];
+
installFlags = [
+
"dummy_drv_video_ladir=$(out)/lib/dri"
+
];
meta = with stdenv.lib; {
+
description = "VAAPI library: Video Acceleration API";
homepage = http://www.freedesktop.org/wiki/Software/vaapi;
license = licenses.mit;
maintainers = with maintainers; [ garbas ];
+
platforms = platforms.unix;
};
}
+2 -2
pkgs/development/libraries/mesa/default.nix
···
in
let
-
version = "17.2.6";
branch = head (splitString "." version);
driverLink = "/run/opengl-driver" + optionalString stdenv.isi686 "-32";
in
···
"ftp://ftp.freedesktop.org/pub/mesa/older-versions/${branch}.x/${version}/mesa-${version}.tar.xz"
"https://mesa.freedesktop.org/archive/mesa-${version}.tar.xz"
];
-
sha256 = "1pihiymglf3bf6w2vphac65v64hv71wgrj38mckbwc03c8j55n3a";
};
prePatch = "patchShebangs .";
···
in
let
+
version = "17.2.7";
branch = head (splitString "." version);
driverLink = "/run/opengl-driver" + optionalString stdenv.isi686 "-32";
in
···
"ftp://ftp.freedesktop.org/pub/mesa/older-versions/${branch}.x/${version}/mesa-${version}.tar.xz"
"https://mesa.freedesktop.org/archive/mesa-${version}.tar.xz"
];
+
sha256 = "0s3slgjxnx482yw0knn4a6alsy2cq28rah6hnjbmf12mvyldxksh";
};
prePatch = "patchShebangs .";
+10 -6
pkgs/development/libraries/vaapi-intel/default.nix
···
-
{ stdenv, fetchurl, gnum4, pkgconfig, python2
, intel-gpu-tools, libdrm, libva, libX11, mesa_noglu, wayland, libXext
}:
stdenv.mkDerivation rec {
name = "intel-vaapi-driver-${version}";
-
version = "1.8.2";
-
src = fetchurl {
-
url = "http://www.freedesktop.org/software/vaapi/releases/libva-intel-driver/${name}.tar.bz2";
-
sha256 = "00mpcvininwr5c4wyhp16s4bddg7vclxxjm2sfq5h7lifjcxyv46";
};
patchPhase = ''
···
"--enable-wayland"
];
-
nativeBuildInputs = [ gnum4 pkgconfig python2 ];
buildInputs = [ intel-gpu-tools libdrm libva libX11 libXext mesa_noglu wayland ];
meta = with stdenv.lib; {
homepage = http://cgit.freedesktop.org/vaapi/intel-driver/;
···
+
{ stdenv, fetchFromGitHub, autoreconfHook, gnum4, pkgconfig, python2
, intel-gpu-tools, libdrm, libva, libX11, mesa_noglu, wayland, libXext
}:
stdenv.mkDerivation rec {
name = "intel-vaapi-driver-${version}";
+
inherit (libva) version;
+
src = fetchFromGitHub {
+
owner = "01org";
+
repo = "libva-intel-driver";
+
rev = version;
+
sha256 = "1832nnva3d33wv52bj59bv62q7a807sdxjqqq0my7l9x7a4qdkzz";
};
patchPhase = ''
···
"--enable-wayland"
];
+
nativeBuildInputs = [ autoreconfHook gnum4 pkgconfig python2 ];
buildInputs = [ intel-gpu-tools libdrm libva libX11 libXext mesa_noglu wayland ];
+
+
enableParallelBuilding = true;
meta = with stdenv.lib; {
homepage = http://cgit.freedesktop.org/vaapi/intel-driver/;
+1 -4
pkgs/development/perl-modules/generic/builder.sh
···
first=$(dd if="$fn" count=2 bs=1 2> /dev/null)
if test "$first" = "#!"; then
echo "patching $fn..."
-
sed < "$fn" > "$fn".tmp \
-
-e "s|^#\!\(.*/perl.*\)$|#\! \1$perlFlags|"
-
if test -x "$fn"; then chmod +x "$fn".tmp; fi
-
mv "$fn".tmp "$fn"
fi
fi
done
···
first=$(dd if="$fn" count=2 bs=1 2> /dev/null)
if test "$first" = "#!"; then
echo "patching $fn..."
+
sed -i "$fn" -e "s|^#\!\(.*[ /]perl.*\)$|#\!\1$perlFlags|"
fi
fi
done
+1 -1
pkgs/development/tools/bloaty/default.nix
···
preConfigure = ''
substituteInPlace src/bloaty.cc \
--replace "c++filt" \
-
"${stdenv.lib.getBin binutils}/bin/c++filt"
'';
doCheck = true;
···
preConfigure = ''
substituteInPlace src/bloaty.cc \
--replace "c++filt" \
+
"${binutils.bintools}/bin/c++filt"
'';
doCheck = true;
+2 -2
pkgs/development/tools/build-managers/meson/default.nix
···
{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
-
version = "0.43.0";
pname = "meson";
name = "${pname}-${version}";
src = python3Packages.fetchPypi {
inherit pname version;
-
sha256 = "0qn5hyzvam3rimn7g3671s1igj7fbkwdnf5nc8jr4d5swy25mq61";
};
postFixup = ''
···
{ lib, python3Packages }:
python3Packages.buildPythonApplication rec {
+
version = "0.44.0";
pname = "meson";
name = "${pname}-${version}";
src = python3Packages.fetchPypi {
inherit pname version;
+
sha256 = "1rpqp9iwbvr4xvfdh3iyfh1ha274hbb66jbgw3pa5a73x4d4ilqn";
};
postFixup = ''
+1 -1
pkgs/development/tools/misc/binutils/default.nix
···
./disambiguate-arm-targets.patch
];
-
outputs = [ "out" "info" ];
nativeBuildInputs = [ bison buildPackages.stdenv.cc ];
buildInputs = [ zlib ];
···
./disambiguate-arm-targets.patch
];
+
outputs = [ "out" "info" "man" ];
nativeBuildInputs = [ bison buildPackages.stdenv.cc ];
buildInputs = [ zlib ];
+2 -2
pkgs/development/web/nodejs/v9.nix
···
in
buildNodejs {
inherit enableNpm;
-
version = "9.2.0";
-
sha256 = "1hmvwfbavk2axqz9kin8b5zsld25gznhvlz55h3yl6nwx9iz5jk4";
patches = lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ];
}
···
in
buildNodejs {
inherit enableNpm;
+
version = "9.3.0";
+
sha256 = "1kap1hi4am5advfp6yb3bd5nhd2wx2j72cjq8qqg7yh95xg0g25j";
patches = lib.optionals stdenv.isDarwin [ ./no-xcode-v7.patch ];
}
+10 -3
pkgs/os-specific/darwin/binutils/default.nix
···
# TODO loop over targetPrefixed binaries too
stdenv.mkDerivation {
name = "${targetPrefix}cctools-binutils-darwin";
buildCommand = ''
mkdir -p $out/bin $out/include
-
ln -s ${binutils-raw.out}/bin/${targetPrefix}c++filt $out/bin/${targetPrefix}c++filt
# We specifically need:
# - ld: binutils doesn't provide it on darwin
···
ln -sf "${cctools}/bin/$i" "$out/bin/$i"
done
-
# FIXME: this will give us incorrect man pages for bits of cctools
-
ln -s ${binutils-raw.out}/share $out/share
ln -s ${cctools}/libexec $out/libexec
'';
passthru = {
···
# TODO loop over targetPrefixed binaries too
stdenv.mkDerivation {
name = "${targetPrefix}cctools-binutils-darwin";
+
outputs = [ "out" "info" "man" ];
buildCommand = ''
mkdir -p $out/bin $out/include
+
ln -s ${binutils-raw.bintools.out}/bin/${targetPrefix}c++filt $out/bin/${targetPrefix}c++filt
# We specifically need:
# - ld: binutils doesn't provide it on darwin
···
ln -sf "${cctools}/bin/$i" "$out/bin/$i"
done
+
ln -s ${binutils-raw.bintools.out}/share $out/share
ln -s ${cctools}/libexec $out/libexec
+
+
mkdir -p "$info/nix-support" "$man/nix-support"
+
printWords ${binutils-raw.bintools.info} \
+
>> $info/nix-support/propagated-build-inputs
+
# FIXME: cctools missing man pages
+
printWords ${binutils-raw.bintools.man} \
+
>> $man/nix-support/propagated-build-inputs
'';
passthru = {
+39 -23
pkgs/stdenv/darwin/default.nix
···
extraBuildInputs,
allowedRequisites ? null}:
let
thisStdenv = import ../generic {
inherit config shell extraNativeBuildInputs extraBuildInputs;
allowedRequisites = if allowedRequisites == null then null else allowedRequisites ++ [
-
thisStdenv.cc.expand-response-params
];
name = "stdenv-darwin-boot-${toString step}";
···
hostPlatform = localSystem;
targetPlatform = localSystem;
-
cc = if isNull last then "/dev/null" else import ../../build-support/cc-wrapper {
-
inherit shell;
-
inherit (last) stdenvNoCC;
-
nativeTools = false;
-
nativeLibc = false;
-
buildPackages = lib.optionalAttrs (last ? stdenv) {
-
inherit (last) stdenv;
-
};
-
libc = last.pkgs.darwin.Libsystem;
-
isClang = true;
-
cc = { name = "clang-9.9.9"; outPath = bootstrapTools; };
-
binutils = { name = "binutils-9.9.9"; outPath = bootstrapTools; };
-
coreutils = { name = "coreutils-9.9.9"; outPath = bootstrapTools; };
-
gnugrep = { name = "gnugrep-9.9.9"; outPath = bootstrapTools; };
-
};
-
-
preHook = stage0.stdenv.lib.optionalString (shell == "${bootstrapTools}/bin/bash") ''
# Don't patch #!/interpreter because it leads to retained
# dependencies on the bootstrapTools in the final stdenv.
dontPatchShebangs=1
···
buildPackages = {
inherit (prevStage) stdenv;
};
-
inherit (pkgs) coreutils binutils gnugrep;
-
cc = pkgs.llvmPackages.clang-unwrapped;
-
libc = pkgs.darwin.Libsystem;
};
extraNativeBuildInputs = [];
···
xz.out xz.bin libcxx libcxxabi gmp.out gnumake findutils bzip2.out
bzip2.bin llvmPackages.llvm llvmPackages.llvm.lib zlib.out zlib.dev libffi.out coreutils ed diffutils gnutar
gzip ncurses.out ncurses.dev ncurses.man gnused bash gawk
-
gnugrep llvmPackages.clang-unwrapped patch pcre.out binutils-raw.out
-
binutils gettext
cc.expand-response-params
]) ++ (with pkgs.darwin; [
dyld Libsystem CF cctools ICU libiconv locale
···
extraBuildInputs,
allowedRequisites ? null}:
let
+
buildPackages = lib.optionalAttrs (last ? stdenv) {
+
inherit (last) stdenv;
+
};
+
+
coreutils = { name = "coreutils-9.9.9"; outPath = bootstrapTools; };
+
gnugrep = { name = "gnugrep-9.9.9"; outPath = bootstrapTools; };
+
+
bintools = import ../../build-support/bintools-wrapper {
+
inherit shell;
+
inherit (last) stdenvNoCC;
+
+
nativeTools = false;
+
nativeLibc = false;
+
inherit buildPackages coreutils gnugrep;
+
libc = last.pkgs.darwin.Libsystem;
+
bintools = { name = "binutils-9.9.9"; outPath = bootstrapTools; };
+
};
+
+
cc = if isNull last then "/dev/null" else import ../../build-support/cc-wrapper {
+
inherit shell;
+
inherit (last) stdenvNoCC;
+
+
nativeTools = false;
+
nativeLibc = false;
+
inherit buildPackages coreutils gnugrep bintools;
+
libc = last.pkgs.darwin.Libsystem;
+
isClang = true;
+
cc = { name = "clang-9.9.9"; outPath = bootstrapTools; };
+
};
+
thisStdenv = import ../generic {
inherit config shell extraNativeBuildInputs extraBuildInputs;
allowedRequisites = if allowedRequisites == null then null else allowedRequisites ++ [
+
cc.expand-response-params cc.bintools
];
name = "stdenv-darwin-boot-${toString step}";
···
hostPlatform = localSystem;
targetPlatform = localSystem;
+
inherit cc;
+
preHook = lib.optionalString (shell == "${bootstrapTools}/bin/bash") ''
# Don't patch #!/interpreter because it leads to retained
# dependencies on the bootstrapTools in the final stdenv.
dontPatchShebangs=1
···
buildPackages = {
inherit (prevStage) stdenv;
};
+
inherit (pkgs) coreutils gnugrep;
+
cc = pkgs.llvmPackages.clang-unwrapped;
+
bintools = pkgs.darwin.binutils;
+
libc = pkgs.darwin.Libsystem;
};
extraNativeBuildInputs = [];
···
xz.out xz.bin libcxx libcxxabi gmp.out gnumake findutils bzip2.out
bzip2.bin llvmPackages.llvm llvmPackages.llvm.lib zlib.out zlib.dev libffi.out coreutils ed diffutils gnutar
gzip ncurses.out ncurses.dev ncurses.man gnused bash gawk
+
gnugrep llvmPackages.clang-unwrapped patch pcre.out gettext
+
binutils-raw.bintools binutils binutils.bintools
cc.expand-response-params
]) ++ (with pkgs.darwin; [
dyld Libsystem CF cctools ICU libiconv locale
+33 -9
pkgs/stdenv/linux/default.nix
···
inherit (prevStage) stdenv;
};
cc = prevStage.gcc-unwrapped;
isGNU = true;
libc = prevStage.glibc;
-
inherit (prevStage) binutils coreutils gnugrep;
name = name;
stdenvNoCC = prevStage.ccWrapperStdenv;
};
···
'';
};
gcc-unwrapped = bootstrapTools;
-
binutils = bootstrapTools;
coreutils = bootstrapTools;
gnugrep = bootstrapTools;
};
···
# Rebuild binutils to use from stage2 onwards.
overrides = self: super: {
-
binutils = super.binutils.override { gold = false; };
inherit (prevStage)
ccWrapperStdenv
glibc gcc-unwrapped coreutils gnugrep;
···
overrides = self: super: {
inherit (prevStage)
ccWrapperStdenv
-
binutils gcc-unwrapped coreutils gnugrep
perl paxctl gnum4 bison;
# This also contains the full, dynamically linked, final Glibc.
};
})
···
# other purposes (binutils and top-level pkgs) too.
inherit (prevStage) gettext gnum4 bison gmp perl glibc zlib linuxHeaders;
gcc = lib.makeOverridable (import ../../build-support/cc-wrapper) {
nativeTools = false;
nativeLibc = false;
···
inherit (prevStage) stdenv;
};
cc = prevStage.gcc-unwrapped;
libc = self.glibc;
-
inherit (self) stdenvNoCC binutils coreutils gnugrep;
name = "";
shell = self.bash + "/bin/bash";
};
···
allowedRequisites = with prevStage; with lib;
# Simple executable tools
concatMap (p: [ (getBin p) (getLib p) ])
-
[ gzip bzip2 xz bash binutils coreutils diffutils findutils gawk
-
gnumake gnused gnutar gnugrep gnupatch patchelf ed paxctl
]
# Library dependencies
++ map getLib (
···
# More complicated cases
++ [
glibc.out glibc.dev glibc.bin/*propagated from .dev*/ linuxHeaders
-
gcc gcc.cc gcc.cc.lib gcc.expand-response-params
]
++ lib.optionals localSystem.isAarch64
[ prevStage.updateAutotoolsGnuConfigScriptsHook prevStage.gnu-config ];
···
attr acl paxctl zlib pcre;
} // lib.optionalAttrs (super.targetPlatform == localSystem) {
# Need to get rid of these when cross-compiling.
-
inherit (prevStage) binutils;
gcc = cc;
};
};
···
inherit (prevStage) stdenv;
};
cc = prevStage.gcc-unwrapped;
+
bintools = prevStage.binutils;
isGNU = true;
libc = prevStage.glibc;
+
inherit (prevStage) coreutils gnugrep;
name = name;
stdenvNoCC = prevStage.ccWrapperStdenv;
};
···
'';
};
gcc-unwrapped = bootstrapTools;
+
binutils = import ../../build-support/bintools-wrapper {
+
nativeTools = false;
+
nativeLibc = false;
+
buildPackages = { };
+
libc = self.glibc;
+
inherit (self) stdenvNoCC coreutils gnugrep;
+
bintools = bootstrapTools;
+
name = "bootstrap-binutils-wrapper";
+
};
coreutils = bootstrapTools;
gnugrep = bootstrapTools;
};
···
# Rebuild binutils to use from stage2 onwards.
overrides = self: super: {
+
binutils = super.binutils_nogold;
inherit (prevStage)
ccWrapperStdenv
glibc gcc-unwrapped coreutils gnugrep;
···
overrides = self: super: {
inherit (prevStage)
ccWrapperStdenv
+
gcc-unwrapped coreutils gnugrep
perl paxctl gnum4 bison;
# This also contains the full, dynamically linked, final Glibc.
+
binutils = prevStage.binutils.override {
+
# Rewrap the binutils with the new glibc, so both the next
+
# stage's wrappers use it.
+
libc = self.glibc;
+
};
};
})
···
# other purposes (binutils and top-level pkgs) too.
inherit (prevStage) gettext gnum4 bison gmp perl glibc zlib linuxHeaders;
+
binutils = super.binutils.override {
+
# Don't use stdenv's shell but our own
+
shell = self.bash + "/bin/bash";
+
# Build expand-response-params with last stage like below
+
buildPackages = {
+
inherit (prevStage) stdenv;
+
};
+
};
+
gcc = lib.makeOverridable (import ../../build-support/cc-wrapper) {
nativeTools = false;
nativeLibc = false;
···
inherit (prevStage) stdenv;
};
cc = prevStage.gcc-unwrapped;
+
bintools = self.binutils;
libc = self.glibc;
+
inherit (self) stdenvNoCC coreutils gnugrep;
name = "";
shell = self.bash + "/bin/bash";
};
···
allowedRequisites = with prevStage; with lib;
# Simple executable tools
concatMap (p: [ (getBin p) (getLib p) ])
+
[ gzip bzip2 xz bash binutils.bintools coreutils diffutils findutils
+
gawk gnumake gnused gnutar gnugrep gnupatch patchelf ed paxctl
]
# Library dependencies
++ map getLib (
···
# More complicated cases
++ [
glibc.out glibc.dev glibc.bin/*propagated from .dev*/ linuxHeaders
+
binutils gcc gcc.cc gcc.cc.lib gcc.expand-response-params
]
++ lib.optionals localSystem.isAarch64
[ prevStage.updateAutotoolsGnuConfigScriptsHook prevStage.gnu-config ];
···
attr acl paxctl zlib pcre;
} // lib.optionalAttrs (super.targetPlatform == localSystem) {
# Need to get rid of these when cross-compiling.
+
inherit (prevStage) binutils binutils-raw;
gcc = cc;
};
};
+1 -1
pkgs/stdenv/linux/make-bootstrap-tools-cross.nix
···
# Copy binutils.
for i in as ld ar ranlib nm strip readelf objdump; do
-
cp ${binutils.out}/bin/$i $out/bin
done
chmod -R u+w $out
···
# Copy binutils.
for i in as ld ar ranlib nm strip readelf objdump; do
+
cp ${binutils.bintools.out}/bin/$i $out/bin
done
chmod -R u+w $out
+1 -1
pkgs/stdenv/linux/make-bootstrap-tools.nix
···
# Copy binutils.
for i in as ld ar ranlib nm strip readelf objdump; do
-
cp ${binutils.out}/bin/$i $out/bin
done
chmod -R u+w $out
···
# Copy binutils.
for i in as ld ar ranlib nm strip readelf objdump; do
+
cp ${binutils.bintools.out}/bin/$i $out/bin
done
chmod -R u+w $out
+37
pkgs/test/cc-wrapper/multilib.nix
···
···
+
{ stdenv }:
+
+
stdenv.mkDerivation {
+
name = "cc-multilib-test";
+
+
# XXX: "depend" on cc-wrapper test?
+
+
# TODO: Have tests report pointer size or something; ensure they are what we asked for
+
buildCommand = ''
+
NIX_DEBUG=1 $CC -v
+
NIX_DEBUG=1 $CXX -v
+
+
printf "checking whether compiler builds valid C binaries... " >&2
+
$CC -o cc-check ${./cc-main.c}
+
./cc-check
+
+
printf "checking whether compiler builds valid 32bit C binaries... " >&2
+
$CC -m32 -o c32-check ${./cc-main.c}
+
./c32-check
+
+
printf "checking whether compiler builds valid 64bit C binaries... " >&2
+
$CC -m64 -o c64-check ${./cc-main.c}
+
./c64-check
+
+
printf "checking whether compiler builds valid 32bit C++ binaries... " >&2
+
$CXX -m32 -o cxx32-check ${./cxx-main.cc}
+
./cxx32-check
+
+
printf "checking whether compiler builds valid 64bit C++ binaries... " >&2
+
$CXX -m64 -o cxx64-check ${./cxx-main.cc}
+
./cxx64-check
+
+
touch $out
+
'';
+
+
meta.platforms = stdenv.lib.platforms.x86_64;
+
}
-4
pkgs/tools/typesetting/biber/default.nix
···
# Tests depend on the precise Unicode-Collate version (expects 1.19, but we have 1.25)
doCheck = false;
-
postUnpack = ''
-
sed '1s/env perl/perl/' -i */bin/biber
-
'';
-
meta = {
description = "Backend for BibLaTeX";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
···
# Tests depend on the precise Unicode-Collate version (expects 1.19, but we have 1.25)
doCheck = false;
meta = {
description = "Backend for BibLaTeX";
license = with stdenv.lib.licenses; [ artistic1 gpl1Plus ];
+67 -9
pkgs/top-level/all-packages.nix
···
inherit url;
};
libredirect = callPackage ../build-support/libredirect { };
madonctl = callPackage ../applications/misc/madonctl { };
···
clang-sierraHack = clang.override {
name = "clang-wrapper-with-reexport-hack";
-
useMacosReexportHack = true;
};
clang_5 = llvmPackages_5.clang;
···
cc = build;
isClang = true;
inherit stdenvNoCC;
-
libc = glibc;
extraPackages = [ libcxx libcxxabi ];
nativeTools = false;
nativeLibc = false;
···
};
wrapCCMulti = cc:
-
if system == "x86_64-linux" then lowPrio (wrapCCWith {
cc = cc.cc.override {
stdenv = overrideCC stdenv (wrapCCWith {
cc = cc.cc;
libc = glibc_multi;
});
profiledCompiler = false;
enableMultilib = true;
};
-
libc = glibc_multi;
-
extraBuildCommands = ''
echo "dontMoveLib64=1" >> $out/nix-support/setup-hook
'';
}) else throw "Multilib ${cc.name} not supported on ‘${system}’";
gcc_multi = wrapCCMulti gcc;
gcc_debug = lowPrio (wrapCC (gcc.cc.override {
stripped = false;
···
if targetPlatform.libc == "msvcrt" then targetPackages.windows.mingw_w64_headers
else if targetPlatform.libc == "libSystem" then darwin.xcode
else null;
in wrapCCWith {
name = "gcc-cross-wrapper";
cc = gccFun {
···
crossStageStatic = true;
langCC = false;
libcCross = libcCross1;
enableShared = false;
};
libc = libcCross1;
};
···
name = "gcc-cross-wrapper";
cc = gccCrossStageStatic.gcc;
libc = windows.mingw_headers2;
};
gcc45 = lowPrio (wrapCC (callPackage ../development/compilers/gcc/4.5 {
···
wla-dx = callPackage ../development/compilers/wla-dx { };
-
wrapCCWith = { name ? "", cc, libc, extraBuildCommands ? "" }: ccWrapperFun rec {
nativeTools = targetPlatform == hostPlatform && stdenv.cc.nativeTools or false;
nativeLibc = targetPlatform == hostPlatform && stdenv.cc.nativeLibc or false;
nativePrefix = stdenv.cc.nativePrefix or "";
···
isGNU = cc.isGNU or false;
isClang = cc.isClang or false;
-
inherit name cc libc extraBuildCommands;
};
ccWrapperFun = callPackage ../build-support/cc-wrapper;
wrapCC = cc: wrapCCWith {
name = lib.optionalString (targetPlatform != hostPlatform) "gcc-cross-wrapper";
inherit cc;
libc = if targetPlatform != hostPlatform then libcCross else stdenv.cc.libc;
};
# legacy version, used for gnat bootstrapping
···
nativePrefix = stdenv.cc.nativePrefix or "";
gcc = baseGCC;
libc = glibc;
};
# prolog
···
then darwin.binutils
else binutils-raw;
-
binutils-raw = callPackage ../development/tools/misc/binutils {
# FHS sys dirs presumably only have stuff for the build platform
noSysDirs = (targetPlatform != buildPlatform) || noSysDirs;
};
binutils_nogold = lowPrio (binutils-raw.override {
-
gold = false;
});
bison2 = callPackage ../development/tools/parsing/bison/2.x.nix { };
···
libva = callPackage ../development/libraries/libva { };
libva-full = libva.override { minimal = false; };
libvdpau = callPackage ../development/libraries/libvdpau { };
···
cc-wrapper-clang-5 = callPackage ../test/cc-wrapper { stdenv = llvmPackages_5.stdenv; };
cc-wrapper-libcxx-5 = callPackage ../test/cc-wrapper { stdenv = llvmPackages_5.libcxxStdenv; };
stdenv-inputs = callPackage ../test/stdenv-inputs { };
macOSSierraShared = callPackage ../test/macos-sierra-shared {};
};
···
inherit url;
};
+
ld-is-cc-hook = makeSetupHook { name = "ld-is-cc-hook"; }
+
../build-support/setup-hooks/ld-is-cc-hook.sh;
+
libredirect = callPackage ../build-support/libredirect { };
madonctl = callPackage ../applications/misc/madonctl { };
···
clang-sierraHack = clang.override {
name = "clang-wrapper-with-reexport-hack";
+
bintools = clang.bintools.override {
+
useMacosReexportHack = true;
+
};
};
clang_5 = llvmPackages_5.clang;
···
cc = build;
isClang = true;
inherit stdenvNoCC;
+
inherit (targetPackages.stdenv.cc) bintools libc;
extraPackages = [ libcxx libcxxabi ];
nativeTools = false;
nativeLibc = false;
···
};
wrapCCMulti = cc:
+
if system == "x86_64-linux" then let
+
# Binutils with glibc multi
+
bintools = cc.bintools.override {
+
libc = glibc_multi;
+
};
+
in lowPrio (wrapCCWith {
cc = cc.cc.override {
stdenv = overrideCC stdenv (wrapCCWith {
cc = cc.cc;
+
inherit bintools;
libc = glibc_multi;
});
profiledCompiler = false;
enableMultilib = true;
};
libc = glibc_multi;
+
inherit bintools;
extraBuildCommands = ''
echo "dontMoveLib64=1" >> $out/nix-support/setup-hook
'';
}) else throw "Multilib ${cc.name} not supported on ‘${system}’";
+
wrapClangMulti = clang:
+
if system == "x86_64-linux" then
+
callPackage ../development/compilers/llvm/multi.nix {
+
inherit clang;
+
gcc32 = pkgsi686Linux.gcc;
+
gcc64 = pkgs.gcc;
+
}
+
else throw "Multilib ${clang.cc.name} not supported on '${system}'";
+
gcc_multi = wrapCCMulti gcc;
+
clang_multi = wrapClangMulti clang;
+
+
gccMultiStdenv = overrideCC stdenv gcc_multi;
+
clangMultiStdenv = overrideCC stdenv clang_multi;
gcc_debug = lowPrio (wrapCC (gcc.cc.override {
stripped = false;
···
if targetPlatform.libc == "msvcrt" then targetPackages.windows.mingw_w64_headers
else if targetPlatform.libc == "libSystem" then darwin.xcode
else null;
+
binutils1 = wrapBintoolsWith {
+
bintools = binutils-unwrapped;
+
libc = libcCross1;
+
};
in wrapCCWith {
name = "gcc-cross-wrapper";
cc = gccFun {
···
crossStageStatic = true;
langCC = false;
libcCross = libcCross1;
+
targetPackages.stdenv.cc.bintools = binutils1;
enableShared = false;
};
+
bintools = binutils1;
libc = libcCross1;
};
···
name = "gcc-cross-wrapper";
cc = gccCrossStageStatic.gcc;
libc = windows.mingw_headers2;
+
inherit binutils;
};
gcc45 = lowPrio (wrapCC (callPackage ../development/compilers/gcc/4.5 {
···
wla-dx = callPackage ../development/compilers/wla-dx { };
+
wrapCCWith = { name ? "", cc, bintools, libc, extraBuildCommands ? "" }:
+
ccWrapperFun rec {
nativeTools = targetPlatform == hostPlatform && stdenv.cc.nativeTools or false;
nativeLibc = targetPlatform == hostPlatform && stdenv.cc.nativeLibc or false;
nativePrefix = stdenv.cc.nativePrefix or "";
···
isGNU = cc.isGNU or false;
isClang = cc.isClang or false;
+
inherit name cc bintools libc extraBuildCommands;
};
ccWrapperFun = callPackage ../build-support/cc-wrapper;
+
bintoolsWrapperFun = callPackage ../build-support/bintools-wrapper;
wrapCC = cc: wrapCCWith {
name = lib.optionalString (targetPlatform != hostPlatform) "gcc-cross-wrapper";
inherit cc;
+
# This should be the only bintools runtime dep with this sort of logic. The
+
# Others should instead delegate to the next stage's choice with
+
# `targetPackages.stdenv.cc.bintools`. This one is different just to
+
# provide the default choice, avoiding infinite recursion.
+
bintools = if targetPlatform.isDarwin then darwin.binutils else binutils;
libc = if targetPlatform != hostPlatform then libcCross else stdenv.cc.libc;
};
# legacy version, used for gnat bootstrapping
···
nativePrefix = stdenv.cc.nativePrefix or "";
gcc = baseGCC;
libc = glibc;
+
};
+
+
wrapBintoolsWith = { bintools, libc }: bintoolsWrapperFun {
+
nativeTools = targetPlatform == hostPlatform && stdenv.cc.nativeTools or false;
+
nativeLibc = targetPlatform == hostPlatform && stdenv.cc.nativeLibc or false;
+
nativePrefix = stdenv.cc.nativePrefix or "";
+
+
noLibc = (libc == null);
+
+
inherit bintools libc;
+
extraBuildCommands = "";
};
# prolog
···
then darwin.binutils
else binutils-raw;
+
binutils-unwrapped = callPackage ../development/tools/misc/binutils {
# FHS sys dirs presumably only have stuff for the build platform
noSysDirs = (targetPlatform != buildPlatform) || noSysDirs;
};
+
binutils-raw = wrapBintoolsWith {
+
libc = if targetPlatform != hostPlatform then libcCross else stdenv.cc.libc;
+
bintools = binutils-unwrapped;
+
};
binutils_nogold = lowPrio (binutils-raw.override {
+
bintools = binutils-raw.bintools.override {
+
gold = false;
+
};
});
bison2 = callPackage ../development/tools/parsing/bison/2.x.nix { };
···
libva = callPackage ../development/libraries/libva { };
libva-full = libva.override { minimal = false; };
+
libva-utils = callPackage ../development/libraries/libva-utils { };
libvdpau = callPackage ../development/libraries/libvdpau { };
···
cc-wrapper-clang-5 = callPackage ../test/cc-wrapper { stdenv = llvmPackages_5.stdenv; };
cc-wrapper-libcxx-5 = callPackage ../test/cc-wrapper { stdenv = llvmPackages_5.libcxxStdenv; };
stdenv-inputs = callPackage ../test/stdenv-inputs { };
+
+
cc-multilib-gcc = callPackage ../test/cc-wrapper/multilib.nix { stdenv = gccMultiStdenv; };
+
cc-multilib-clang = callPackage ../test/cc-wrapper/multilib.nix { stdenv = clangMultiStdenv; };
macOSSierraShared = callPackage ../test/macos-sierra-shared {};
};
+8 -2
pkgs/top-level/darwin-packages.nix
···
apple_sdk = callPackage ../os-specific/darwin/apple-sdk { };
-
binutils = callPackage ../os-specific/darwin/binutils {
-
inherit (darwin) cctools;
};
cctools = callPackage ../os-specific/darwin/cctools/port.nix {
···
apple_sdk = callPackage ../os-specific/darwin/apple-sdk { };
+
binutils = pkgs.wrapBintoolsWith {
+
libc =
+
if pkgs.targetPlatform != pkgs.hostPlatform
+
then pkgs.libcCross
+
else pkgs.stdenv.cc.libc;
+
bintools = callPackage ../os-specific/darwin/binutils {
+
inherit (darwin) cctools;
+
};
};
cctools = callPackage ../os-specific/darwin/cctools/port.nix {
+3
pkgs/top-level/perl-packages.nix
···
url = "mirror://cpan/authors/id/J/JG/JGMYERS/${name}.tar.gz";
sha256 = "834d893aa7db6ce3f158afbd0e432d6ed15a276e0940db0a74be13fd9c4bbbf1";
};
propagatedBuildInputs = [ ModuleBuild ];
meta = {
description = "An Encode::Encoding subclass that detects the encoding of data";
···
url = "mirror://cpan/modules/by-module/ExtUtils/${name}.tar.gz";
sha256 = "1a77hxf2pa8ia9na72rijv1yhpn2bjrdsybwk2dj2l938pl3xn0w";
};
propagatedBuildInputs = [ CaptureTiny ];
};
···
url = "mirror://cpan/modules/by-module/Math/${name}.tar.gz";
sha256 = "0i9wzvig7ayijc9nvh5x5rryk1jrcj1hcvfmlcj449rnnxx24dav";
};
propagatedBuildInputs = [ ModuleBuildWithXSpp ExtUtilsXSpp ExtUtilsTypemapsDefault TestDeep ];
};
···
url = "mirror://cpan/authors/id/J/JG/JGMYERS/${name}.tar.gz";
sha256 = "834d893aa7db6ce3f158afbd0e432d6ed15a276e0940db0a74be13fd9c4bbbf1";
};
+
nativeBuildInputs = [ pkgs.ld-is-cc-hook ];
propagatedBuildInputs = [ ModuleBuild ];
meta = {
description = "An Encode::Encoding subclass that detects the encoding of data";
···
url = "mirror://cpan/modules/by-module/ExtUtils/${name}.tar.gz";
sha256 = "1a77hxf2pa8ia9na72rijv1yhpn2bjrdsybwk2dj2l938pl3xn0w";
};
+
nativeBuildInputs = [ pkgs.ld-is-cc-hook ];
propagatedBuildInputs = [ CaptureTiny ];
};
···
url = "mirror://cpan/modules/by-module/Math/${name}.tar.gz";
sha256 = "0i9wzvig7ayijc9nvh5x5rryk1jrcj1hcvfmlcj449rnnxx24dav";
};
+
nativeBuildInputs = [ pkgs.ld-is-cc-hook ];
propagatedBuildInputs = [ ModuleBuildWithXSpp ExtUtilsXSpp ExtUtilsTypemapsDefault TestDeep ];
};
+7 -10
pkgs/top-level/python-packages.nix
···
flit = self.flit;
# We want Python libraries to be named like e.g. "python3.6-${name}"
inherit namePrefix;
-
pythonModule = python;
}));
buildPythonApplication = makeOverridablePythonPackage ( makeOverridable (callPackage ../development/interpreters/python/build-python-package.nix {
inherit bootstrapped-pip;
flit = self.flit;
namePrefix = "";
-
pythonModule = false;
}));
graphiteVersion = "1.0.2";
···
in fetcher (builtins.removeAttrs attrs ["format"]) );
# Check whether a derivation provides a Python module.
-
hasPythonModule = drv: (hasAttr "pythonModule" drv) && ( (getAttr "pythonModule" drv) == python);
# Get list of required Python modules given a list of derivations.
requiredPythonModules = drvs: let
-
filterNull = list: filter (x: !isNull x) list;
-
conditionalGetRecurse = attr: condition: drv: let f = conditionalGetRecurse attr condition; in
-
(if (condition drv) then unique [drv]++(concatMap f (filterNull(getAttr attr drv))) else []);
-
_required = drv: conditionalGetRecurse "propagatedBuildInputs" hasPythonModule drv;
-
in [python] ++ (unique (concatMap _required (filterNull drvs)));
# Create a PYTHONPATH from a list of derivations. This function recurses into the items to find derivations
# providing Python modules.
···
drv.overrideAttrs( oldAttrs: {
# Use passthru in order to prevent rebuilds when possible.
passthru = (oldAttrs.passthru or {})// {
-
name = namePrefix + oldAttrs.name;
pythonModule = python;
pythonPath = [ ]; # Deprecated, for compatibility.
};
});
···
recursivePthLoader = callPackage ../development/python-modules/recursive-pth-loader { };
-
setuptools = callPackage ../development/python-modules/setuptools { };
vowpalwabbit = callPackage ../development/python-modules/vowpalwabbit {
pythonPackages = self;
···
flit = self.flit;
# We want Python libraries to be named like e.g. "python3.6-${name}"
inherit namePrefix;
+
inherit toPythonModule;
}));
buildPythonApplication = makeOverridablePythonPackage ( makeOverridable (callPackage ../development/interpreters/python/build-python-package.nix {
inherit bootstrapped-pip;
flit = self.flit;
namePrefix = "";
+
toPythonModule = x: x; # Application does not provide modules.
}));
graphiteVersion = "1.0.2";
···
in fetcher (builtins.removeAttrs attrs ["format"]) );
# Check whether a derivation provides a Python module.
+
hasPythonModule = drv: drv?pythonModule && drv.pythonModule == python;
# Get list of required Python modules given a list of derivations.
requiredPythonModules = drvs: let
+
modules = filter hasPythonModule drvs;
+
in unique ([python] ++ modules ++ concatLists (catAttrs "requiredPythonModules" modules));
# Create a PYTHONPATH from a list of derivations. This function recurses into the items to find derivations
# providing Python modules.
···
drv.overrideAttrs( oldAttrs: {
# Use passthru in order to prevent rebuilds when possible.
passthru = (oldAttrs.passthru or {})// {
pythonModule = python;
pythonPath = [ ]; # Deprecated, for compatibility.
+
requiredPythonModules = requiredPythonModules drv.propagatedBuildInputs;
};
});
···
recursivePthLoader = callPackage ../development/python-modules/recursive-pth-loader { };
+
setuptools = toPythonModule (callPackage ../development/python-modules/setuptools { });
vowpalwabbit = callPackage ../development/python-modules/vowpalwabbit {
pythonPackages = self;
+2
pkgs/top-level/release.nix
···
jobs.tests.cc-wrapper-clang-39.x86_64-darwin
jobs.tests.cc-wrapper-libcxx-39.x86_64-linux
jobs.tests.cc-wrapper-libcxx-39.x86_64-darwin
jobs.tests.stdenv-inputs.x86_64-linux
jobs.tests.stdenv-inputs.x86_64-darwin
jobs.tests.macOSSierraShared.x86_64-darwin
···
jobs.tests.cc-wrapper-clang-39.x86_64-darwin
jobs.tests.cc-wrapper-libcxx-39.x86_64-linux
jobs.tests.cc-wrapper-libcxx-39.x86_64-darwin
+
jobs.tests.cc-multilib-gcc.x86_64-linux
+
jobs.tests.cc-multilib-clang.x86_64-linux
jobs.tests.stdenv-inputs.x86_64-linux
jobs.tests.stdenv-inputs.x86_64-darwin
jobs.tests.macOSSierraShared.x86_64-darwin