2015-01-09 19:22:12 +00:00
|
|
|
|
# The Nixpkgs CC is not directly usable, since it doesn't know where
|
2014-10-10 12:49:26 +01:00
|
|
|
|
# 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".
|
2008-06-26 12:07:46 +01:00
|
|
|
|
|
2018-02-01 00:00:00 +00:00
|
|
|
|
{ name ? ""
|
2018-09-05 19:33:56 +01:00
|
|
|
|
, stdenvNoCC
|
2017-08-26 16:43:30 +01:00
|
|
|
|
, cc ? null, libc ? null, bintools, coreutils ? null, shell ? stdenvNoCC.shell
|
2020-06-17 21:33:56 +01:00
|
|
|
|
, gccForLibs ? null
|
2019-09-20 11:05:57 +01:00
|
|
|
|
, zlib ? null
|
2018-09-05 19:33:56 +01:00
|
|
|
|
, nativeTools, noLibc ? false, nativeLibc, nativePrefix ? ""
|
|
|
|
|
, propagateDoc ? cc != null && cc ? man
|
2020-03-18 15:28:52 +00:00
|
|
|
|
, extraTools ? [], extraPackages ? [], extraBuildCommands ? ""
|
2018-05-24 22:43:31 +01:00
|
|
|
|
, isGNU ? false, isClang ? cc.isClang or false, gnugrep ? null
|
2017-08-21 23:26:08 +01:00
|
|
|
|
, buildPackages ? {}
|
2019-01-26 15:17:57 +00:00
|
|
|
|
, libcxx ? null
|
2008-06-26 12:07:46 +01:00
|
|
|
|
}:
|
|
|
|
|
|
2017-09-20 16:07:52 +01:00
|
|
|
|
with stdenvNoCC.lib;
|
2014-10-10 12:49:26 +01:00
|
|
|
|
|
2018-02-01 00:00:00 +00:00
|
|
|
|
assert nativeTools -> !propagateDoc && nativePrefix != "";
|
2015-12-17 22:02:40 +00:00
|
|
|
|
assert !nativeTools ->
|
2017-08-26 16:43:30 +01:00
|
|
|
|
cc != null && coreutils != null && gnugrep != null;
|
2017-05-23 01:59:39 +01:00
|
|
|
|
assert !(nativeLibc && noLibc);
|
|
|
|
|
assert (noLibc || nativeLibc) == (libc == null);
|
2008-06-26 12:07:46 +01:00
|
|
|
|
|
2009-04-09 16:24:33 +01:00
|
|
|
|
let
|
2017-09-20 16:07:52 +01:00
|
|
|
|
stdenv = stdenvNoCC;
|
2017-07-06 02:47:48 +01:00
|
|
|
|
inherit (stdenv) hostPlatform targetPlatform;
|
|
|
|
|
|
2017-02-13 23:01:04 +00:00
|
|
|
|
# Prefix for binaries. Customarily ends with a dash separator.
|
|
|
|
|
#
|
|
|
|
|
# TODO(@Ericson2314) Make unconditional, or optional but always true by
|
|
|
|
|
# default.
|
2017-11-25 18:43:57 +00:00
|
|
|
|
targetPrefix = stdenv.lib.optionalString (targetPlatform != hostPlatform)
|
|
|
|
|
(targetPlatform.config + "-");
|
2009-04-09 16:24:33 +01:00
|
|
|
|
|
2019-08-14 14:52:15 +01:00
|
|
|
|
ccVersion = stdenv.lib.getVersion cc;
|
|
|
|
|
ccName = stdenv.lib.removePrefix targetPrefix (stdenv.lib.getName cc);
|
2012-08-03 18:23:51 +01:00
|
|
|
|
|
2017-05-23 01:59:39 +01:00
|
|
|
|
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;
|
2019-08-12 23:59:01 +01:00
|
|
|
|
cc_solib = getLib cc
|
|
|
|
|
+ optionalString (targetPlatform != hostPlatform) "/${targetPlatform.config}";
|
|
|
|
|
|
2016-02-03 15:54:03 +00:00
|
|
|
|
# The wrapper scripts use 'cat' and 'grep', so we may need coreutils.
|
2016-04-14 17:00:39 +01:00
|
|
|
|
coreutils_bin = if nativeTools then "" else getBin coreutils;
|
2017-06-08 19:00:40 +01:00
|
|
|
|
|
2020-04-28 05:08:48 +01:00
|
|
|
|
# The "suffix salt" is a arbitrary string added in the end of env vars
|
2017-06-26 05:43:06 +01:00
|
|
|
|
# defined by cc-wrapper's hooks so that multiple cc-wrappers can be used
|
|
|
|
|
# without interfering. For the moment, it is defined as the target triple,
|
|
|
|
|
# adjusted to be a valid bash identifier. This should be considered an
|
|
|
|
|
# unstable implementation detail, however.
|
2020-04-28 05:08:48 +01:00
|
|
|
|
suffixSalt = replaceStrings ["-" "."] ["_" "_"] targetPlatform.config;
|
2017-06-19 16:10:27 +01:00
|
|
|
|
|
2017-08-23 21:23:30 +01:00
|
|
|
|
expand-response-params =
|
2020-08-22 04:20:10 +01:00
|
|
|
|
if (buildPackages.stdenv.hasCC or false) && buildPackages.stdenv.cc != "/dev/null"
|
2017-08-23 21:23:30 +01:00
|
|
|
|
then import ../expand-response-params { inherit (buildPackages) stdenv; }
|
|
|
|
|
else "";
|
2017-06-29 17:06:55 +01:00
|
|
|
|
|
2020-09-07 20:08:11 +01:00
|
|
|
|
useGccForLibs = isClang
|
|
|
|
|
&& libcxx == null
|
|
|
|
|
&& !(stdenv.targetPlatform.useLLVM or false)
|
|
|
|
|
&& !(stdenv.targetPlatform.useAndroidPrebuilt or false)
|
2021-01-20 18:14:46 +00:00
|
|
|
|
&& !(stdenv.targetPlatform.isiOS or false)
|
2020-09-07 20:08:11 +01:00
|
|
|
|
&& gccForLibs != null;
|
|
|
|
|
|
2019-04-21 17:13:37 +01:00
|
|
|
|
# older compilers (for example bootstrap's GCC 5) fail with -march=too-modern-cpu
|
|
|
|
|
isGccArchSupported = arch:
|
2020-04-14 01:44:43 +01:00
|
|
|
|
if isGNU then
|
2019-05-06 00:40:20 +01:00
|
|
|
|
{ # Intel
|
|
|
|
|
skylake = versionAtLeast ccVersion "6.0";
|
2019-04-21 17:13:37 +01:00
|
|
|
|
skylake-avx512 = versionAtLeast ccVersion "6.0";
|
|
|
|
|
cannonlake = versionAtLeast ccVersion "8.0";
|
|
|
|
|
icelake-client = versionAtLeast ccVersion "8.0";
|
|
|
|
|
icelake-server = versionAtLeast ccVersion "8.0";
|
2020-12-24 00:02:10 +00:00
|
|
|
|
cascadelake = versionAtLeast ccVersion "9.0";
|
|
|
|
|
cooperlake = versionAtLeast ccVersion "10.0";
|
|
|
|
|
tigerlake = versionAtLeast ccVersion "10.0";
|
2019-04-21 17:13:37 +01:00
|
|
|
|
knm = versionAtLeast ccVersion "8.0";
|
2019-05-06 00:40:20 +01:00
|
|
|
|
# AMD
|
|
|
|
|
znver1 = versionAtLeast ccVersion "6.0";
|
2020-08-05 03:32:41 +01:00
|
|
|
|
znver2 = versionAtLeast ccVersion "9.0";
|
2020-12-24 00:02:10 +00:00
|
|
|
|
znver3 = versionAtLeast ccVersion "11.0";
|
2019-04-21 17:13:37 +01:00
|
|
|
|
}.${arch} or true
|
2020-04-14 01:44:43 +01:00
|
|
|
|
else if isClang then
|
2019-05-06 00:40:20 +01:00
|
|
|
|
{ # Intel
|
|
|
|
|
cannonlake = versionAtLeast ccVersion "5.0";
|
2019-04-21 17:13:37 +01:00
|
|
|
|
icelake-client = versionAtLeast ccVersion "7.0";
|
|
|
|
|
icelake-server = versionAtLeast ccVersion "7.0";
|
|
|
|
|
knm = versionAtLeast ccVersion "7.0";
|
2019-05-06 00:40:20 +01:00
|
|
|
|
# AMD
|
|
|
|
|
znver1 = versionAtLeast ccVersion "4.0";
|
2020-08-05 03:32:41 +01:00
|
|
|
|
znver2 = versionAtLeast ccVersion "9.0";
|
2019-04-21 17:13:37 +01:00
|
|
|
|
}.${arch} or true
|
|
|
|
|
else
|
|
|
|
|
false;
|
|
|
|
|
|
2009-04-09 16:24:33 +01:00
|
|
|
|
in
|
2009-03-25 17:34:38 +00:00
|
|
|
|
|
2017-08-28 19:56:08 +01:00
|
|
|
|
# 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;
|
|
|
|
|
|
2012-12-29 14:11:32 +00:00
|
|
|
|
stdenv.mkDerivation {
|
2019-06-24 01:42:48 +01:00
|
|
|
|
pname = targetPrefix
|
|
|
|
|
+ (if name != "" then name else "${ccName}-wrapper");
|
|
|
|
|
version = if cc == null then null else ccVersion;
|
2014-02-04 15:58:12 +00:00
|
|
|
|
|
2014-10-10 12:49:26 +01:00
|
|
|
|
preferLocalBuild = true;
|
|
|
|
|
|
2017-08-28 19:56:08 +01:00
|
|
|
|
inherit cc libc_bin libc_dev libc_lib bintools coreutils_bin;
|
2018-09-04 22:13:00 +01:00
|
|
|
|
shell = getBin shell + shell.shellPath or "";
|
2016-02-01 13:42:33 +00:00
|
|
|
|
gnugrep_bin = if nativeTools then "" else gnugrep;
|
2014-02-04 15:58:12 +00:00
|
|
|
|
|
2020-04-28 05:08:48 +01:00
|
|
|
|
inherit targetPrefix suffixSalt;
|
2017-06-08 19:00:40 +01:00
|
|
|
|
|
2018-02-01 00:00:00 +00:00
|
|
|
|
outputs = [ "out" ] ++ optionals propagateDoc [ "man" "info" ];
|
2017-06-08 19:00:40 +01:00
|
|
|
|
|
2016-10-07 15:31:37 +01:00
|
|
|
|
passthru = {
|
2017-10-11 00:01:42 +01:00
|
|
|
|
# "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
|
2017-08-28 19:56:08 +01:00
|
|
|
|
# Binutils, and Apple's "cctools"; "bintools" as an attempt to find an
|
2017-10-11 00:01:42 +01:00
|
|
|
|
# unused middle-ground name that evokes both.
|
2017-08-28 19:56:08 +01:00
|
|
|
|
inherit bintools;
|
2020-04-14 01:44:43 +01:00
|
|
|
|
inherit libc nativeTools nativeLibc nativePrefix isGNU isClang;
|
2016-10-07 15:31:37 +01:00
|
|
|
|
|
|
|
|
|
emacsBufferSetup = pkgs: ''
|
|
|
|
|
; We should handle propagation here too
|
2017-08-28 19:56:08 +01:00
|
|
|
|
(mapc
|
|
|
|
|
(lambda (arg)
|
|
|
|
|
(when (file-directory-p (concat arg "/include"))
|
2020-04-28 05:08:48 +01:00
|
|
|
|
(setenv "NIX_CFLAGS_COMPILE_${suffixSalt}" (concat (getenv "NIX_CFLAGS_COMPILE_${suffixSalt}") " -isystem " arg "/include"))))
|
2017-08-28 19:56:08 +01:00
|
|
|
|
'(${concatStringsSep " " (map (pkg: "\"${pkg}\"") pkgs)}))
|
2016-10-07 15:31:37 +01:00
|
|
|
|
'';
|
|
|
|
|
};
|
2014-10-10 12:49:26 +01:00
|
|
|
|
|
2017-08-23 21:55:55 +01:00
|
|
|
|
dontBuild = true;
|
|
|
|
|
dontConfigure = true;
|
|
|
|
|
|
|
|
|
|
unpackPhase = ''
|
|
|
|
|
src=$PWD
|
|
|
|
|
'';
|
|
|
|
|
|
2019-11-27 19:15:56 +00:00
|
|
|
|
wrapper = ./cc-wrapper.sh;
|
|
|
|
|
|
2017-08-23 21:55:55 +01:00
|
|
|
|
installPhase =
|
2014-10-10 12:49:26 +01:00
|
|
|
|
''
|
2018-02-01 00:00:00 +00:00
|
|
|
|
mkdir -p $out/bin $out/nix-support
|
2014-10-10 12:49:26 +01:00
|
|
|
|
|
|
|
|
|
wrap() {
|
|
|
|
|
local dst="$1"
|
|
|
|
|
local wrapper="$2"
|
|
|
|
|
export prog="$3"
|
|
|
|
|
substituteAll "$wrapper" "$out/bin/$dst"
|
|
|
|
|
chmod +x "$out/bin/$dst"
|
|
|
|
|
}
|
|
|
|
|
''
|
|
|
|
|
|
|
|
|
|
+ (if nativeTools then ''
|
2017-08-23 21:55:55 +01:00
|
|
|
|
echo ${if targetPlatform.isDarwin then cc else nativePrefix} > $out/nix-support/orig-cc
|
|
|
|
|
|
2017-05-21 19:51:02 +01:00
|
|
|
|
ccPath="${if targetPlatform.isDarwin then cc else nativePrefix}/bin"
|
2014-10-10 12:49:26 +01:00
|
|
|
|
'' else ''
|
2015-01-09 19:22:12 +00:00
|
|
|
|
echo $cc > $out/nix-support/orig-cc
|
2014-10-10 12:49:26 +01:00
|
|
|
|
|
2016-01-02 10:14:09 +00:00
|
|
|
|
ccPath="${cc}/bin"
|
2014-10-10 12:49:26 +01:00
|
|
|
|
'')
|
|
|
|
|
|
2020-06-30 16:04:10 +01:00
|
|
|
|
# Create symlinks to everything in the bintools wrapper.
|
2014-10-10 12:49:26 +01:00
|
|
|
|
+ ''
|
2017-08-28 19:56:08 +01:00
|
|
|
|
for bbin in $bintools/bin/*; do
|
|
|
|
|
mkdir -p "$out/bin"
|
|
|
|
|
ln -s "$bbin" "$out/bin/$(basename $bbin)"
|
|
|
|
|
done
|
2020-06-30 16:04:10 +01:00
|
|
|
|
''
|
2014-10-10 13:01:38 +01:00
|
|
|
|
|
2020-06-30 16:04:10 +01:00
|
|
|
|
# We export environment variables pointing to the wrapped nonstandard
|
|
|
|
|
# cmds, lest some lousy configure script use those to guess compiler
|
|
|
|
|
# version.
|
|
|
|
|
+ ''
|
2017-11-25 18:43:57 +00:00
|
|
|
|
export named_cc=${targetPrefix}cc
|
|
|
|
|
export named_cxx=${targetPrefix}c++
|
2017-06-26 06:17:09 +01:00
|
|
|
|
|
2017-11-25 18:43:57 +00:00
|
|
|
|
if [ -e $ccPath/${targetPrefix}gcc ]; then
|
2019-11-27 19:15:56 +00:00
|
|
|
|
wrap ${targetPrefix}gcc $wrapper $ccPath/${targetPrefix}gcc
|
2017-11-25 18:43:57 +00:00
|
|
|
|
ln -s ${targetPrefix}gcc $out/bin/${targetPrefix}cc
|
|
|
|
|
export named_cc=${targetPrefix}gcc
|
|
|
|
|
export named_cxx=${targetPrefix}g++
|
2015-01-09 19:22:12 +00:00
|
|
|
|
elif [ -e $ccPath/clang ]; then
|
2019-11-27 19:15:56 +00:00
|
|
|
|
wrap ${targetPrefix}clang $wrapper $ccPath/clang
|
2017-11-25 18:43:57 +00:00
|
|
|
|
ln -s ${targetPrefix}clang $out/bin/${targetPrefix}cc
|
|
|
|
|
export named_cc=${targetPrefix}clang
|
|
|
|
|
export named_cxx=${targetPrefix}clang++
|
2014-10-10 12:49:26 +01:00
|
|
|
|
fi
|
|
|
|
|
|
2017-11-25 18:43:57 +00:00
|
|
|
|
if [ -e $ccPath/${targetPrefix}g++ ]; then
|
2019-11-27 19:15:56 +00:00
|
|
|
|
wrap ${targetPrefix}g++ $wrapper $ccPath/${targetPrefix}g++
|
2017-11-25 18:43:57 +00:00
|
|
|
|
ln -s ${targetPrefix}g++ $out/bin/${targetPrefix}c++
|
2015-01-09 19:22:12 +00:00
|
|
|
|
elif [ -e $ccPath/clang++ ]; then
|
2019-11-27 19:15:56 +00:00
|
|
|
|
wrap ${targetPrefix}clang++ $wrapper $ccPath/clang++
|
2017-11-25 18:43:57 +00:00
|
|
|
|
ln -s ${targetPrefix}clang++ $out/bin/${targetPrefix}c++
|
2014-10-10 14:48:34 +01:00
|
|
|
|
fi
|
|
|
|
|
|
2015-01-09 19:22:12 +00:00
|
|
|
|
if [ -e $ccPath/cpp ]; then
|
2019-11-27 19:15:56 +00:00
|
|
|
|
wrap ${targetPrefix}cpp $wrapper $ccPath/cpp
|
2014-10-10 12:49:26 +01:00
|
|
|
|
fi
|
|
|
|
|
''
|
|
|
|
|
|
2019-05-11 22:16:17 +01:00
|
|
|
|
+ optionalString cc.langAda or false ''
|
|
|
|
|
wrap ${targetPrefix}gnatmake ${./gnat-wrapper.sh} $ccPath/${targetPrefix}gnatmake
|
|
|
|
|
wrap ${targetPrefix}gnatbind ${./gnat-wrapper.sh} $ccPath/${targetPrefix}gnatbind
|
|
|
|
|
wrap ${targetPrefix}gnatlink ${./gnat-wrapper.sh} $ccPath/${targetPrefix}gnatlink
|
|
|
|
|
''
|
|
|
|
|
|
2019-09-20 11:05:57 +01:00
|
|
|
|
+ optionalString cc.langD or false ''
|
|
|
|
|
wrap ${targetPrefix}gdc $wrapper $ccPath/${targetPrefix}gdc
|
|
|
|
|
''
|
|
|
|
|
|
2015-01-09 19:22:12 +00:00
|
|
|
|
+ optionalString cc.langFortran or false ''
|
2019-11-27 19:15:56 +00:00
|
|
|
|
wrap ${targetPrefix}gfortran $wrapper $ccPath/${targetPrefix}gfortran
|
2017-11-25 18:43:57 +00:00
|
|
|
|
ln -sv ${targetPrefix}gfortran $out/bin/${targetPrefix}g77
|
|
|
|
|
ln -sv ${targetPrefix}gfortran $out/bin/${targetPrefix}f77
|
2020-07-06 05:22:19 +01:00
|
|
|
|
export named_fc=${targetPrefix}gfortran
|
2014-10-10 12:49:26 +01:00
|
|
|
|
''
|
|
|
|
|
|
2015-01-09 19:22:12 +00:00
|
|
|
|
+ optionalString cc.langJava or false ''
|
2019-11-27 19:15:56 +00:00
|
|
|
|
wrap ${targetPrefix}gcj $wrapper $ccPath/${targetPrefix}gcj
|
2014-10-10 12:49:26 +01:00
|
|
|
|
''
|
|
|
|
|
|
2015-01-09 19:22:12 +00:00
|
|
|
|
+ optionalString cc.langGo or false ''
|
2019-11-27 19:15:56 +00:00
|
|
|
|
wrap ${targetPrefix}gccgo $wrapper $ccPath/${targetPrefix}gccgo
|
2017-08-23 21:55:55 +01:00
|
|
|
|
'';
|
|
|
|
|
|
2018-05-13 16:31:24 +01:00
|
|
|
|
strictDeps = true;
|
2019-09-20 11:05:57 +01:00
|
|
|
|
propagatedBuildInputs = [ bintools ] ++ extraTools ++ optionals cc.langD or false [ zlib ];
|
2020-04-14 01:44:43 +01:00
|
|
|
|
depsTargetTargetPropagated = optional (libcxx != null) libcxx ++ extraPackages;
|
2017-08-23 21:55:55 +01:00
|
|
|
|
|
2018-05-07 18:07:19 +01:00
|
|
|
|
wrapperName = "CC_WRAPPER";
|
|
|
|
|
|
|
|
|
|
setupHooks = [
|
|
|
|
|
../setup-hooks/role.bash
|
2020-07-06 05:22:19 +01:00
|
|
|
|
] ++ stdenv.lib.optional (cc.langC or true) ./setup-hook.sh
|
|
|
|
|
++ stdenv.lib.optional (cc.langFortran or false) ./fortran-hook.sh;
|
2017-08-23 21:55:55 +01:00
|
|
|
|
|
|
|
|
|
postFixup =
|
2020-06-30 19:26:37 +01:00
|
|
|
|
# Ensure flags files exists, as some other programs cat them. (That these
|
|
|
|
|
# are considered an exposed interface is a bit dubious, but fine for now.)
|
|
|
|
|
''
|
|
|
|
|
touch "$out/nix-support/cc-cflags"
|
|
|
|
|
touch "$out/nix-support/cc-ldflags"
|
|
|
|
|
''
|
|
|
|
|
|
2020-06-30 16:04:10 +01:00
|
|
|
|
# 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.
|
2020-06-30 19:26:37 +01:00
|
|
|
|
+ ''
|
2017-08-28 19:56:08 +01:00
|
|
|
|
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
|
2017-08-23 21:55:55 +01:00
|
|
|
|
''
|
|
|
|
|
|
2020-06-30 16:04:10 +01:00
|
|
|
|
##
|
|
|
|
|
## General Clang support
|
|
|
|
|
##
|
2020-04-14 01:44:43 +01:00
|
|
|
|
+ optionalString isClang ''
|
|
|
|
|
|
|
|
|
|
echo "-target ${targetPlatform.config}" >> $out/nix-support/cc-cflags
|
|
|
|
|
''
|
|
|
|
|
|
2020-06-30 16:04:10 +01:00
|
|
|
|
##
|
|
|
|
|
## GCC libs for non-GCC support
|
|
|
|
|
##
|
2020-09-07 20:08:11 +01:00
|
|
|
|
+ optionalString useGccForLibs ''
|
2020-04-14 01:44:43 +01:00
|
|
|
|
|
2020-06-17 21:33:56 +01:00
|
|
|
|
echo "-B${gccForLibs}/lib/gcc/${targetPlatform.config}/${gccForLibs.version}" >> $out/nix-support/cc-cflags
|
|
|
|
|
echo "-L${gccForLibs}/lib/gcc/${targetPlatform.config}/${gccForLibs.version}" >> $out/nix-support/cc-ldflags
|
|
|
|
|
echo "-L${gccForLibs.lib}/${targetPlatform.config}/lib" >> $out/nix-support/cc-ldflags
|
2020-04-14 01:44:43 +01:00
|
|
|
|
''
|
|
|
|
|
|
2021-01-20 23:45:52 +00:00
|
|
|
|
# TODO We would like to connect this to `useGccForLibs`, but we cannot yet
|
|
|
|
|
# because `libcxxStdenv` on linux still needs this. Maybe someday we'll
|
|
|
|
|
# always set `useLLVM` on Darwin, and maybe also break down `useLLVM` into
|
|
|
|
|
# fine-grained use flags (libgcc vs compiler-rt, ld.lld vs legacy, libc++
|
|
|
|
|
# vs libstdc++, etc.) since Darwin isn't `useLLVM` on all counts. (See
|
|
|
|
|
# https://clang.llvm.org/docs/Toolchain.html for all the axes one might
|
|
|
|
|
# break `useLLVM` into.)
|
|
|
|
|
+ optionalString (isClang && gccForLibs != null && targetPlatform.isLinux && !(stdenv.targetPlatform.useLLVM or false)) ''
|
|
|
|
|
echo "--gcc-toolchain=${gccForLibs}" >> $out/nix-support/cc-cflags
|
|
|
|
|
''
|
|
|
|
|
|
2020-06-30 16:04:10 +01:00
|
|
|
|
##
|
|
|
|
|
## General libc support
|
|
|
|
|
##
|
|
|
|
|
|
|
|
|
|
# The "-B${libc_lib}/lib/" flag is a quick hack to force gcc to link
|
|
|
|
|
# against the crt1.o from our own glibc, rather than the one in
|
|
|
|
|
# /usr/lib. (This is only an issue when using an `impure'
|
|
|
|
|
# compiler/linker, i.e., one that searches /usr/lib and so on.)
|
|
|
|
|
#
|
|
|
|
|
# Unfortunately, setting -B appears to override the default search
|
|
|
|
|
# path. Thus, the gcc-specific "../includes-fixed" directory is
|
|
|
|
|
# now longer searched and glibc's <limits.h> header fails to
|
|
|
|
|
# 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.
|
2019-11-26 00:55:16 +00:00
|
|
|
|
+ optionalString (libc != null) (''
|
2020-06-30 19:26:37 +01:00
|
|
|
|
touch "$out/nix-support/libc-cflags"
|
|
|
|
|
touch "$out/nix-support/libc-ldflags"
|
2020-07-01 21:55:06 +01:00
|
|
|
|
echo "-B${libc_lib}${libc.libdir or "/lib/"}" >> $out/nix-support/libc-crt1-cflags
|
2019-09-20 11:05:57 +01:00
|
|
|
|
'' + optionalString (!(cc.langD or false)) ''
|
2019-11-26 00:55:16 +00:00
|
|
|
|
echo "-idirafter ${libc_dev}${libc.incdir or "/include"}" >> $out/nix-support/libc-cflags
|
2019-09-20 11:05:57 +01:00
|
|
|
|
'' + optionalString (isGNU && (!(cc.langD or false))) ''
|
2019-11-26 00:55:16 +00:00
|
|
|
|
for dir in "${cc}"/lib/gcc/*/*/include-fixed; do
|
|
|
|
|
echo '-idirafter' ''${dir} >> $out/nix-support/libc-cflags
|
|
|
|
|
done
|
|
|
|
|
'' + ''
|
2017-08-23 21:55:55 +01:00
|
|
|
|
|
|
|
|
|
echo "${libc_lib}" > $out/nix-support/orig-libc
|
|
|
|
|
echo "${libc_dev}" > $out/nix-support/orig-libc-dev
|
2019-11-26 00:55:16 +00:00
|
|
|
|
'')
|
2017-08-23 21:55:55 +01:00
|
|
|
|
|
2020-06-30 16:04:10 +01:00
|
|
|
|
##
|
|
|
|
|
## General libc++ support
|
|
|
|
|
##
|
2020-06-30 19:26:37 +01:00
|
|
|
|
|
|
|
|
|
# We have a libc++ directly, we have one via "smuggled" GCC, or we have one
|
|
|
|
|
# bundled with the C compiler because it is GCC
|
2020-09-07 20:08:11 +01:00
|
|
|
|
+ optionalString (libcxx != null || (useGccForLibs && gccForLibs.langCC or false) || (isGNU && cc.langCC or false)) ''
|
2020-06-30 19:26:37 +01:00
|
|
|
|
touch "$out/nix-support/libcxx-cxxflags"
|
|
|
|
|
touch "$out/nix-support/libcxx-ldflags"
|
2020-06-17 21:33:56 +01:00
|
|
|
|
''
|
2020-09-07 20:08:11 +01:00
|
|
|
|
+ optionalString (libcxx == null && (useGccForLibs && gccForLibs.langCC or false)) ''
|
2020-06-17 21:33:56 +01:00
|
|
|
|
for dir in ${gccForLibs}/include/c++/*; do
|
2020-04-14 01:44:43 +01:00
|
|
|
|
echo "-isystem $dir" >> $out/nix-support/libcxx-cxxflags
|
|
|
|
|
done
|
2020-06-17 21:33:56 +01:00
|
|
|
|
for dir in ${gccForLibs}/include/c++/*/${targetPlatform.config}; do
|
2020-04-14 01:44:43 +01:00
|
|
|
|
echo "-isystem $dir" >> $out/nix-support/libcxx-cxxflags
|
|
|
|
|
done
|
|
|
|
|
''
|
|
|
|
|
+ optionalString (libcxx.isLLVM or false) (''
|
|
|
|
|
echo "-isystem ${libcxx}/include/c++/v1" >> $out/nix-support/libcxx-cxxflags
|
|
|
|
|
echo "-stdlib=libc++" >> $out/nix-support/libcxx-ldflags
|
|
|
|
|
'' + stdenv.lib.optionalString stdenv.targetPlatform.isLinux ''
|
|
|
|
|
echo "-lc++abi" >> $out/nix-support/libcxx-ldflags
|
|
|
|
|
'')
|
|
|
|
|
|
2020-06-30 16:04:10 +01:00
|
|
|
|
##
|
|
|
|
|
## Initial CFLAGS
|
|
|
|
|
##
|
|
|
|
|
|
|
|
|
|
# GCC shows ${cc_solib}/lib in `gcc -print-search-dirs', but not
|
|
|
|
|
# ${cc_solib}/lib64 (even though it does actually search there...)..
|
|
|
|
|
# This confuses libtool. So add it to the compiler tool search
|
|
|
|
|
# path explicitly.
|
2017-08-23 21:55:55 +01:00
|
|
|
|
+ optionalString (!nativeTools) ''
|
|
|
|
|
if [ -e "${cc_solib}/lib64" -a ! -L "${cc_solib}/lib64" ]; then
|
|
|
|
|
ccLDFlags+=" -L${cc_solib}/lib64"
|
|
|
|
|
ccCFlags+=" -B${cc_solib}/lib64"
|
|
|
|
|
fi
|
|
|
|
|
ccLDFlags+=" -L${cc_solib}/lib"
|
|
|
|
|
ccCFlags+=" -B${cc_solib}/lib"
|
|
|
|
|
|
2019-05-11 22:16:17 +01:00
|
|
|
|
'' + optionalString cc.langAda or false ''
|
2020-06-30 19:26:37 +01:00
|
|
|
|
touch "$out/nix-support/gnat-cflags"
|
|
|
|
|
touch "$out/nix-support/gnat-ldflags"
|
2019-05-11 22:16:17 +01:00
|
|
|
|
basePath=$(echo $cc/lib/*/*/*)
|
|
|
|
|
ccCFlags+=" -B$basePath -I$basePath/adainclude"
|
|
|
|
|
gnatCFlags="-I$basePath/adainclude -I$basePath/adalib"
|
|
|
|
|
|
2020-06-30 19:26:37 +01:00
|
|
|
|
echo "$gnatCFlags" >> $out/nix-support/gnat-cflags
|
2019-05-11 22:16:17 +01:00
|
|
|
|
'' + ''
|
2020-06-30 19:26:37 +01:00
|
|
|
|
echo "$ccLDFlags" >> $out/nix-support/cc-ldflags
|
|
|
|
|
echo "$ccCFlags" >> $out/nix-support/cc-cflags
|
2019-01-26 15:17:57 +00:00
|
|
|
|
'' + optionalString (targetPlatform.isDarwin && (libcxx != null) && (cc.isClang or false)) ''
|
|
|
|
|
echo " -L${libcxx}/lib" >> $out/nix-support/cc-ldflags
|
2020-06-30 16:04:10 +01:00
|
|
|
|
''
|
2017-08-23 21:55:55 +01:00
|
|
|
|
|
2020-06-30 16:04:10 +01:00
|
|
|
|
##
|
|
|
|
|
## Man page and info support
|
|
|
|
|
##
|
|
|
|
|
+ optionalString propagateDoc ''
|
2018-09-05 19:35:16 +01:00
|
|
|
|
ln -s ${cc.man} $man
|
|
|
|
|
ln -s ${cc.info} $info
|
2019-09-20 11:05:57 +01:00
|
|
|
|
'' + optionalString (cc.langD or false) ''
|
|
|
|
|
echo "-B${zlib}${zlib.libdir or "/lib/"}" >> $out/nix-support/libc-cflags
|
2014-10-10 12:49:26 +01:00
|
|
|
|
''
|
|
|
|
|
|
2020-06-30 16:04:10 +01:00
|
|
|
|
##
|
|
|
|
|
## Hardening support
|
|
|
|
|
##
|
2014-10-10 12:49:26 +01:00
|
|
|
|
+ ''
|
2017-09-16 22:54:17 +01:00
|
|
|
|
export hardening_unsupported_flags="${builtins.concatStringsSep " " (cc.hardeningUnsupportedFlags or [])}"
|
2017-06-20 19:04:24 +01:00
|
|
|
|
''
|
|
|
|
|
|
2019-04-09 19:21:54 +01:00
|
|
|
|
# Machine flags. These are necessary to support
|
2016-08-23 17:13:31 +01:00
|
|
|
|
|
2019-04-09 19:21:54 +01:00
|
|
|
|
# TODO: We should make a way to support miscellaneous machine
|
|
|
|
|
# flags and other gcc flags as well.
|
|
|
|
|
|
|
|
|
|
# Always add -march based on cpu in triple. Sometimes there is a
|
|
|
|
|
# discrepency (x86_64 vs. x86-64), so we provide an "arch" arg in
|
|
|
|
|
# that case.
|
2021-01-23 01:33:55 +00:00
|
|
|
|
+ optionalString ((targetPlatform ? gcc.arch) &&
|
|
|
|
|
isGccArchSupported targetPlatform.gcc.arch) ''
|
|
|
|
|
echo "-march=${targetPlatform.gcc.arch}" >> $out/nix-support/cc-cflags-before
|
2018-06-24 03:05:26 +01:00
|
|
|
|
''
|
|
|
|
|
|
2019-04-09 19:21:54 +01:00
|
|
|
|
# -mcpu is not very useful. You should use mtune and march
|
|
|
|
|
# instead. It’s provided here for backwards compatibility.
|
2021-01-23 01:33:55 +00:00
|
|
|
|
+ optionalString (targetPlatform ? gcc.cpu) ''
|
|
|
|
|
echo "-mcpu=${targetPlatform.gcc.cpu}" >> $out/nix-support/cc-cflags-before
|
2018-10-15 22:11:20 +01:00
|
|
|
|
''
|
|
|
|
|
|
2019-04-09 19:21:54 +01:00
|
|
|
|
# -mfloat-abi only matters on arm32 but we set it here
|
|
|
|
|
# unconditionally just in case. If the abi specifically sets hard
|
|
|
|
|
# vs. soft floats we use it here.
|
2021-01-23 01:33:55 +00:00
|
|
|
|
+ optionalString (targetPlatform ? gcc.float-abi) ''
|
|
|
|
|
echo "-mfloat-abi=${targetPlatform.gcc.float-abi}" >> $out/nix-support/cc-cflags-before
|
2019-04-09 19:21:54 +01:00
|
|
|
|
''
|
2021-01-23 01:33:55 +00:00
|
|
|
|
+ optionalString (targetPlatform ? gcc.fpu) ''
|
|
|
|
|
echo "-mfpu=${targetPlatform.gcc.fpu}" >> $out/nix-support/cc-cflags-before
|
2019-04-09 19:21:54 +01:00
|
|
|
|
''
|
2021-01-23 01:33:55 +00:00
|
|
|
|
+ optionalString (targetPlatform ? gcc.mode) ''
|
|
|
|
|
echo "-mmode=${targetPlatform.gcc.mode}" >> $out/nix-support/cc-cflags-before
|
2019-04-09 19:21:54 +01:00
|
|
|
|
''
|
2021-01-23 01:33:55 +00:00
|
|
|
|
+ optionalString (targetPlatform ? gcc.tune &&
|
|
|
|
|
isGccArchSupported targetPlatform.gcc.tune) ''
|
|
|
|
|
echo "-mtune=${targetPlatform.gcc.tune}" >> $out/nix-support/cc-cflags-before
|
2018-07-28 17:29:02 +01:00
|
|
|
|
''
|
|
|
|
|
|
2019-04-09 19:21:54 +01:00
|
|
|
|
# TODO: categorize these and figure out a better place for them
|
|
|
|
|
+ optionalString hostPlatform.isCygwin ''
|
|
|
|
|
hardening_unsupported_flags+=" pic"
|
|
|
|
|
'' + optionalString targetPlatform.isMinGW ''
|
|
|
|
|
hardening_unsupported_flags+=" stackprotector"
|
|
|
|
|
'' + optionalString targetPlatform.isAvr ''
|
|
|
|
|
hardening_unsupported_flags+=" stackprotector pic"
|
|
|
|
|
'' + optionalString (targetPlatform.libc == "newlib") ''
|
2018-10-15 22:11:20 +01:00
|
|
|
|
hardening_unsupported_flags+=" stackprotector fortify pie pic"
|
2019-04-09 19:21:54 +01:00
|
|
|
|
'' + optionalString targetPlatform.isNetBSD ''
|
|
|
|
|
hardening_unsupported_flags+=" stackprotector fortify"
|
2019-05-11 22:16:17 +01:00
|
|
|
|
'' + optionalString cc.langAda or false ''
|
2020-12-23 00:42:11 +00:00
|
|
|
|
hardening_unsupported_flags+=" format stackprotector strictoverflow"
|
2019-09-20 11:05:57 +01:00
|
|
|
|
'' + optionalString cc.langD or false ''
|
|
|
|
|
hardening_unsupported_flags+=" format"
|
|
|
|
|
'' + optionalString targetPlatform.isWasm ''
|
2019-01-30 02:01:24 +00:00
|
|
|
|
hardening_unsupported_flags+=" stackprotector fortify pie pic"
|
|
|
|
|
''
|
|
|
|
|
|
2018-10-15 22:11:20 +01:00
|
|
|
|
+ optionalString (libc != null && targetPlatform.isAvr) ''
|
|
|
|
|
for isa in avr5 avr3 avr4 avr6 avr25 avr31 avr35 avr51 avrxmega2 avrxmega4 avrxmega5 avrxmega6 avrxmega7 tiny-stack; do
|
2020-07-01 21:55:06 +01:00
|
|
|
|
echo "-B${getLib libc}/avr/lib/$isa" >> $out/nix-support/libc-crt1-cflags
|
2018-10-15 22:11:20 +01:00
|
|
|
|
done
|
|
|
|
|
''
|
|
|
|
|
|
2020-02-27 15:39:35 +00:00
|
|
|
|
# There are a few tools (to name one libstdcxx5) which do not work
|
|
|
|
|
# well with multi line flags, so make the flags single line again
|
2017-06-20 19:04:24 +01:00
|
|
|
|
+ ''
|
2020-06-30 19:26:37 +01:00
|
|
|
|
for flags in "$out/nix-support"/*flags*; do
|
2020-04-14 01:44:43 +01:00
|
|
|
|
substituteInPlace "$flags" --replace $'\n' ' '
|
|
|
|
|
done
|
2020-02-27 15:39:35 +00:00
|
|
|
|
|
2017-06-26 05:43:06 +01:00
|
|
|
|
substituteAll ${./add-flags.sh} $out/nix-support/add-flags.sh
|
|
|
|
|
substituteAll ${./add-hardening.sh} $out/nix-support/add-hardening.sh
|
2020-09-07 15:31:59 +01:00
|
|
|
|
substituteAll ${../wrapper-common/utils.bash} $out/nix-support/utils.bash
|
2015-07-20 12:42:30 +01:00
|
|
|
|
''
|
2018-02-01 00:00:00 +00:00
|
|
|
|
|
2020-06-30 16:04:10 +01:00
|
|
|
|
##
|
|
|
|
|
## Extra custom steps
|
|
|
|
|
##
|
2015-07-20 12:42:30 +01:00
|
|
|
|
+ extraBuildCommands;
|
2014-10-10 12:49:26 +01:00
|
|
|
|
|
2017-08-28 19:56:08 +01:00
|
|
|
|
inherit expand-response-params;
|
2017-07-01 01:27:48 +01:00
|
|
|
|
|
2018-05-07 18:15:34 +01:00
|
|
|
|
# for substitution in utils.bash
|
2017-08-23 21:39:15 +01:00
|
|
|
|
expandResponseParams = "${expand-response-params}/bin/expand-response-params";
|
2010-12-04 21:45:37 +00:00
|
|
|
|
|
2009-03-25 18:34:27 +00:00
|
|
|
|
meta =
|
2015-01-09 19:22:12 +00:00
|
|
|
|
let cc_ = if cc != null then cc else {}; in
|
|
|
|
|
(if cc_ ? meta then removeAttrs cc.meta ["priority"] else {}) //
|
2009-04-19 17:00:46 +01:00
|
|
|
|
{ description =
|
2015-01-09 19:22:12 +00:00
|
|
|
|
stdenv.lib.attrByPath ["meta" "description"] "System C compiler" cc_
|
2009-04-19 17:00:46 +01:00
|
|
|
|
+ " (wrapper script)";
|
2019-02-01 01:07:55 +00:00
|
|
|
|
priority = 10;
|
2017-07-18 04:36:17 +01:00
|
|
|
|
};
|
2008-06-26 12:07:46 +01:00
|
|
|
|
}
|