2021-01-22 12:25:31 +01:00
|
|
|
{ lib, stdenv, targetPackages, fetchurl, fetchpatch, noSysDirs
|
2019-05-03 12:34:40 +02:00
|
|
|
, langC ? true, langCC ? true, langFortran ? false
|
2019-05-11 23:16:17 +02:00
|
|
|
, langAda ? false
|
2019-05-03 12:34:40 +02:00
|
|
|
, langObjC ? stdenv.targetPlatform.isDarwin
|
|
|
|
, langObjCpp ? stdenv.targetPlatform.isDarwin
|
2019-09-20 12:05:57 +02:00
|
|
|
, langD ? false
|
2019-05-03 12:34:40 +02:00
|
|
|
, langGo ? false
|
2021-02-12 18:18:43 +01:00
|
|
|
, reproducibleBuild ? true
|
2019-05-03 12:34:40 +02:00
|
|
|
, profiledCompiler ? false
|
2020-05-06 05:26:01 +02:00
|
|
|
, langJit ? false
|
2019-05-03 12:34:40 +02:00
|
|
|
, staticCompiler ? false
|
2021-01-03 18:51:18 +01:00
|
|
|
, # N.B. the defult is intentionally not from an `isStatic`. See
|
|
|
|
# https://gcc.gnu.org/install/configure.html - this is about target
|
|
|
|
# platform libraries not host platform ones unlike normal. But since
|
|
|
|
# we can't rebuild those without also rebuilding the compiler itself,
|
|
|
|
# we opt to always build everything unlike our usual policy.
|
|
|
|
enableShared ? true
|
2019-11-10 22:11:57 +01:00
|
|
|
, enableLTO ? true
|
2019-05-03 12:34:40 +02:00
|
|
|
, texinfo ? null
|
|
|
|
, perl ? null # optional, for texi2pod (then pod2man)
|
2020-05-26 12:16:03 +02:00
|
|
|
, gmp, mpfr, libmpc, gettext, which, patchelf
|
2019-05-03 12:34:40 +02:00
|
|
|
, libelf # optional, for link-time optimizations (LTO)
|
|
|
|
, isl ? null # optional, for the Graphite optimization framework.
|
|
|
|
, zlib ? null
|
2019-05-11 23:16:17 +02:00
|
|
|
, gnatboot ? null
|
2019-05-03 12:34:40 +02:00
|
|
|
, enableMultilib ? false
|
|
|
|
, enablePlugin ? stdenv.hostPlatform == stdenv.buildPlatform # Whether to support user-supplied plug-ins
|
|
|
|
, name ? "gcc"
|
|
|
|
, libcCross ? null
|
2019-11-11 06:23:32 +01:00
|
|
|
, threadsCross ? null # for MinGW
|
2019-05-03 12:34:40 +02:00
|
|
|
, crossStageStatic ? false
|
|
|
|
, # Strip kills static libs of other archs (hence no cross)
|
2020-12-31 07:19:10 +01:00
|
|
|
stripped ? stdenv.hostPlatform.system == stdenv.buildPlatform.system
|
|
|
|
&& stdenv.targetPlatform.system == stdenv.hostPlatform.system
|
2019-05-03 12:34:40 +02:00
|
|
|
, gnused ? null
|
|
|
|
, cloog # unused; just for compat with gcc4, as we override the parameter on some places
|
|
|
|
, buildPackages
|
|
|
|
}:
|
|
|
|
|
2020-06-26 22:44:45 +02:00
|
|
|
# Note: this package is used for bootstrapping fetchurl, and thus
|
|
|
|
# cannot use fetchpatch! All mutable patches (generated by GitHub or
|
|
|
|
# cgit) that are needed here should be included directly in Nixpkgs as
|
|
|
|
# files.
|
|
|
|
|
2019-05-03 12:34:40 +02:00
|
|
|
# LTO needs libelf and zlib.
|
|
|
|
assert libelf != null -> zlib != null;
|
|
|
|
|
|
|
|
# Make sure we get GNU sed.
|
|
|
|
assert stdenv.hostPlatform.isDarwin -> gnused != null;
|
|
|
|
|
|
|
|
# The go frontend is written in c++
|
|
|
|
assert langGo -> langCC;
|
2019-05-11 23:16:17 +02:00
|
|
|
assert langAda -> gnatboot != null;
|
2019-05-03 12:34:40 +02:00
|
|
|
|
2019-11-11 06:23:32 +01:00
|
|
|
# threadsCross is just for MinGW
|
|
|
|
assert threadsCross != null -> stdenv.targetPlatform.isWindows;
|
|
|
|
|
2021-02-12 18:18:43 +01:00
|
|
|
# profiledCompiler builds inject non-determinism in one of the compilation stages.
|
|
|
|
# If turned on, we can't provide reproducible builds anymore
|
|
|
|
assert reproducibleBuild -> profiledCompiler == false;
|
|
|
|
|
2021-01-22 12:25:31 +01:00
|
|
|
with lib;
|
2019-05-03 12:34:40 +02:00
|
|
|
with builtins;
|
|
|
|
|
2019-11-11 06:23:32 +01:00
|
|
|
let majorVersion = "9";
|
2020-03-14 06:28:18 +01:00
|
|
|
version = "${majorVersion}.3.0";
|
2019-05-03 12:34:40 +02:00
|
|
|
|
|
|
|
inherit (stdenv) buildPlatform hostPlatform targetPlatform;
|
|
|
|
|
|
|
|
patches =
|
2020-11-02 20:01:59 +01:00
|
|
|
# Fix ICE: Max. number of generated reload insns per insn is achieved (90)
|
|
|
|
#
|
|
|
|
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=96796
|
|
|
|
#
|
|
|
|
# This patch can most likely be removed by a post 9.3.0-release.
|
|
|
|
[ ./avoid-cycling-subreg-reloads.patch ]
|
|
|
|
++ optional (targetPlatform != hostPlatform) ../libstdc++-target.patch
|
2021-04-22 13:54:07 +02:00
|
|
|
++ optional targetPlatform.isNetBSD ../libstdc++-netbsd-ctypes.patch
|
2019-05-03 12:34:40 +02:00
|
|
|
++ optional noSysDirs ../no-sys-dirs.patch
|
|
|
|
/* ++ optional (hostPlatform != buildPlatform) (fetchpatch { # XXX: Refine when this should be applied
|
|
|
|
url = "https://git.busybox.net/buildroot/plain/package/gcc/${version}/0900-remove-selftests.patch?id=11271540bfe6adafbc133caf6b5b902a816f5f02";
|
|
|
|
sha256 = ""; # TODO: uncomment and check hash when available.
|
|
|
|
}) */
|
2019-05-11 23:16:17 +02:00
|
|
|
++ optional langAda ../gnat-cflags.patch
|
2019-09-20 12:05:57 +02:00
|
|
|
++ optional langD ../libphobos.patch
|
2019-05-03 12:34:40 +02:00
|
|
|
++ optional langFortran ../gfortran-driving.patch
|
2019-11-11 06:23:32 +01:00
|
|
|
++ optional (targetPlatform.libc == "musl" && targetPlatform.isPower) ../ppc-musl.patch
|
2020-12-29 17:19:42 +01:00
|
|
|
|
|
|
|
# Obtain latest patch with ../update-mcfgthread-patches.sh
|
2021-08-31 20:27:57 +02:00
|
|
|
++ optional (!crossStageStatic && targetPlatform.isMinGW) ./Added-mcf-thread-model-support-from-mcfgthread.patch
|
|
|
|
|
|
|
|
++ [ ../libsanitizer-no-cyclades-9.patch ];
|
2019-05-03 12:34:40 +02:00
|
|
|
|
|
|
|
/* Cross-gcc settings (build == host != target) */
|
|
|
|
crossMingw = targetPlatform != hostPlatform && targetPlatform.libc == "msvcrt";
|
2019-08-23 12:30:13 +02:00
|
|
|
stageNameAddon = if crossStageStatic then "stage-static" else "stage-final";
|
|
|
|
crossNameAddon = optionalString (targetPlatform != hostPlatform) "${targetPlatform.config}-${stageNameAddon}-";
|
2019-05-03 12:34:40 +02:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
stdenv.mkDerivation ({
|
2019-08-23 12:30:13 +02:00
|
|
|
pname = "${crossNameAddon}${name}${if stripped then "" else "-debug"}";
|
2019-06-24 02:48:40 +02:00
|
|
|
inherit version;
|
2019-05-03 12:34:40 +02:00
|
|
|
|
|
|
|
builder = ../builder.sh;
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://gcc/releases/gcc-${version}/gcc-${version}.tar.xz";
|
2020-03-14 06:28:18 +01:00
|
|
|
sha256 = "1la2yy27ziasyf0jvzk58y1i5b5bq2h176qil550bxhifs39gqbi";
|
2019-05-03 12:34:40 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
inherit patches;
|
|
|
|
|
2021-01-22 12:25:31 +01:00
|
|
|
outputs = [ "out" "man" "info" ] ++ lib.optional (!langJit) "lib";
|
2019-05-03 12:34:40 +02:00
|
|
|
setOutputFlags = false;
|
|
|
|
NIX_NO_SELF_RPATH = true;
|
|
|
|
|
|
|
|
libc_dev = stdenv.cc.libc_dev;
|
|
|
|
|
|
|
|
hardeningDisable = [ "format" "pie" ];
|
|
|
|
|
2021-05-05 07:47:05 +02:00
|
|
|
postPatch = ''
|
|
|
|
configureScripts=$(find . -name configure)
|
|
|
|
for configureScript in $configureScripts; do
|
|
|
|
patchShebangs $configureScript
|
|
|
|
done
|
|
|
|
''
|
2019-05-03 12:34:40 +02:00
|
|
|
# This should kill all the stdinc frameworks that gcc and friends like to
|
|
|
|
# insert into default search paths.
|
2021-05-05 07:47:05 +02:00
|
|
|
+ lib.optionalString hostPlatform.isDarwin ''
|
2019-05-03 12:34:40 +02:00
|
|
|
substituteInPlace gcc/config/darwin-c.c \
|
|
|
|
--replace 'if (stdinc)' 'if (0)'
|
|
|
|
|
|
|
|
substituteInPlace libgcc/config/t-slibgcc-darwin \
|
2020-05-06 05:23:26 +02:00
|
|
|
--replace "-install_name @shlib_slibdir@/\$(SHLIB_INSTALL_NAME)" "-install_name ''${!outputLib}/lib/\$(SHLIB_INSTALL_NAME)"
|
2019-05-03 12:34:40 +02:00
|
|
|
|
|
|
|
substituteInPlace libgfortran/configure \
|
2020-05-06 05:23:26 +02:00
|
|
|
--replace "-install_name \\\$rpath/\\\$soname" "-install_name ''${!outputLib}/lib/\\\$soname"
|
2021-05-05 07:47:05 +02:00
|
|
|
''
|
|
|
|
+ (
|
2019-05-03 12:34:40 +02:00
|
|
|
if targetPlatform != hostPlatform || stdenv.cc.libc != null then
|
|
|
|
# On NixOS, use the right path to the dynamic linker instead of
|
|
|
|
# `/lib/ld*.so'.
|
|
|
|
let
|
|
|
|
libc = if libcCross != null then libcCross else stdenv.cc.libc;
|
|
|
|
in
|
|
|
|
(
|
|
|
|
'' echo "fixing the \`GLIBC_DYNAMIC_LINKER', \`UCLIBC_DYNAMIC_LINKER', and \`MUSL_DYNAMIC_LINKER' macros..."
|
|
|
|
for header in "gcc/config/"*-gnu.h "gcc/config/"*"/"*.h
|
|
|
|
do
|
|
|
|
grep -q _DYNAMIC_LINKER "$header" || continue
|
|
|
|
echo " fixing \`$header'..."
|
|
|
|
sed -i "$header" \
|
|
|
|
-e 's|define[[:blank:]]*\([UCG]\+\)LIBC_DYNAMIC_LINKER\([0-9]*\)[[:blank:]]"\([^\"]\+\)"$|define \1LIBC_DYNAMIC_LINKER\2 "${libc.out}\3"|g' \
|
|
|
|
-e 's|define[[:blank:]]*MUSL_DYNAMIC_LINKER\([0-9]*\)[[:blank:]]"\([^\"]\+\)"$|define MUSL_DYNAMIC_LINKER\1 "${libc.out}\2"|g'
|
|
|
|
done
|
|
|
|
''
|
2021-01-22 12:25:31 +01:00
|
|
|
+ lib.optionalString (targetPlatform.libc == "musl")
|
2019-05-03 12:34:40 +02:00
|
|
|
''
|
|
|
|
sed -i gcc/config/linux.h -e '1i#undef LOCAL_INCLUDE_DIR'
|
|
|
|
''
|
|
|
|
)
|
2019-09-21 04:37:00 +02:00
|
|
|
else "")
|
2021-01-22 12:25:31 +01:00
|
|
|
+ lib.optionalString targetPlatform.isAvr ''
|
2019-09-20 12:05:57 +02:00
|
|
|
makeFlagsArray+=(
|
|
|
|
'LIMITS_H_TEST=false'
|
|
|
|
)
|
|
|
|
'';
|
2019-05-03 12:34:40 +02:00
|
|
|
|
|
|
|
inherit noSysDirs staticCompiler crossStageStatic
|
|
|
|
libcCross crossMingw;
|
|
|
|
|
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
nativeBuildInputs = [ texinfo which gettext ]
|
2021-07-22 19:02:35 +02:00
|
|
|
++ (optional (perl != null) perl)
|
|
|
|
++ (optional langAda gnatboot)
|
|
|
|
;
|
2019-05-03 12:34:40 +02:00
|
|
|
|
|
|
|
# For building runtime libs
|
|
|
|
depsBuildTarget =
|
2020-05-26 12:16:03 +02:00
|
|
|
(
|
|
|
|
if hostPlatform == buildPlatform then [
|
|
|
|
targetPackages.stdenv.cc.bintools # newly-built gcc will be used
|
|
|
|
] else assert targetPlatform == hostPlatform; [ # build != host == target
|
|
|
|
stdenv.cc
|
|
|
|
]
|
|
|
|
)
|
|
|
|
++ optional targetPlatform.isLinux patchelf;
|
2019-05-03 12:34:40 +02:00
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gmp mpfr libmpc libelf
|
|
|
|
targetPackages.stdenv.cc.bintools # For linking code at run-time
|
|
|
|
] ++ (optional (isl != null) isl)
|
|
|
|
++ (optional (zlib != null) zlib)
|
|
|
|
# The builder relies on GNU sed (for instance, Darwin's `sed' fails with
|
|
|
|
# "-i may not be used with stdin"), and `stdenvNative' doesn't provide it.
|
|
|
|
++ (optional hostPlatform.isDarwin gnused)
|
|
|
|
;
|
|
|
|
|
2019-11-11 06:23:32 +01:00
|
|
|
depsTargetTarget = optional (!crossStageStatic && threadsCross != null) threadsCross;
|
|
|
|
|
2021-01-22 12:25:31 +01:00
|
|
|
NIX_LDFLAGS = lib.optionalString hostPlatform.isSunOS "-lm -ldl";
|
2019-05-03 12:34:40 +02:00
|
|
|
|
2019-11-10 21:05:59 +01:00
|
|
|
preConfigure = import ../common/pre-configure.nix {
|
2021-01-22 12:25:31 +01:00
|
|
|
inherit lib;
|
2021-05-17 23:50:16 +02:00
|
|
|
inherit version targetPlatform hostPlatform gnatboot langAda langGo langJit;
|
2019-11-10 21:05:59 +01:00
|
|
|
};
|
2019-05-03 12:34:40 +02:00
|
|
|
|
|
|
|
dontDisableStatic = true;
|
|
|
|
|
2021-04-16 17:39:04 +02:00
|
|
|
configurePlatforms = [ "build" "host" "target" ];
|
2019-05-03 12:34:40 +02:00
|
|
|
|
2019-11-10 21:58:19 +01:00
|
|
|
configureFlags = import ../common/configure-flags.nix {
|
|
|
|
inherit
|
2021-01-22 12:25:31 +01:00
|
|
|
lib
|
2019-11-10 21:58:19 +01:00
|
|
|
stdenv
|
|
|
|
targetPackages
|
|
|
|
crossStageStatic libcCross
|
|
|
|
version
|
|
|
|
|
|
|
|
gmp mpfr libmpc libelf isl
|
|
|
|
|
2019-11-10 22:11:57 +01:00
|
|
|
enableLTO
|
2019-11-10 21:58:19 +01:00
|
|
|
enableMultilib
|
2019-11-10 22:11:57 +01:00
|
|
|
enablePlugin
|
2019-11-10 21:58:19 +01:00
|
|
|
enableShared
|
|
|
|
|
|
|
|
langC
|
2019-09-20 12:05:57 +02:00
|
|
|
langD
|
2019-11-10 21:58:19 +01:00
|
|
|
langCC
|
|
|
|
langFortran
|
2019-05-11 23:16:17 +02:00
|
|
|
langAda
|
2019-11-10 21:58:19 +01:00
|
|
|
langGo
|
|
|
|
langObjC
|
|
|
|
langObjCpp
|
2020-05-06 05:26:01 +02:00
|
|
|
langJit
|
2019-11-10 21:58:19 +01:00
|
|
|
;
|
|
|
|
};
|
2019-05-03 12:34:40 +02:00
|
|
|
|
|
|
|
targetConfig = if targetPlatform != hostPlatform then targetPlatform.config else null;
|
|
|
|
|
|
|
|
buildFlags = optional
|
2019-11-10 23:06:22 +01:00
|
|
|
(targetPlatform == hostPlatform && hostPlatform == buildPlatform)
|
2019-05-03 12:34:40 +02:00
|
|
|
(if profiledCompiler then "profiledbootstrap" else "bootstrap");
|
|
|
|
|
|
|
|
dontStrip = !stripped;
|
|
|
|
|
2019-11-04 12:23:53 +01:00
|
|
|
installTargets = optional stripped "install-strip";
|
2019-05-03 12:34:40 +02:00
|
|
|
|
|
|
|
# https://gcc.gnu.org/install/specific.html#x86-64-x-solaris210
|
|
|
|
${if hostPlatform.system == "x86_64-solaris" then "CC" else null} = "gcc -m64";
|
|
|
|
|
|
|
|
# Setting $CPATH and $LIBRARY_PATH to make sure both `gcc' and `xgcc' find the
|
|
|
|
# library headers and binaries, regarless of the language being compiled.
|
|
|
|
#
|
|
|
|
# Likewise, the LTO code doesn't find zlib.
|
|
|
|
#
|
|
|
|
# Cross-compiling, we need gcc not to read ./specs in order to build the g++
|
|
|
|
# compiler (after the specs for the cross-gcc are created). Having
|
|
|
|
# LIBRARY_PATH= makes gcc read the specs from ., and the build breaks.
|
|
|
|
|
|
|
|
CPATH = optionals (targetPlatform == hostPlatform) (makeSearchPathOutput "dev" "include" ([]
|
|
|
|
++ optional (zlib != null) zlib
|
|
|
|
));
|
|
|
|
|
|
|
|
LIBRARY_PATH = optionals (targetPlatform == hostPlatform) (makeLibraryPath (optional (zlib != null) zlib));
|
|
|
|
|
2019-11-11 06:08:45 +01:00
|
|
|
inherit
|
|
|
|
(import ../common/extra-target-flags.nix {
|
2021-01-27 06:44:43 +01:00
|
|
|
inherit lib stdenv crossStageStatic langD libcCross threadsCross;
|
2019-11-11 06:08:45 +01:00
|
|
|
})
|
2020-04-28 06:08:48 +02:00
|
|
|
EXTRA_FLAGS_FOR_TARGET
|
|
|
|
EXTRA_LDFLAGS_FOR_TARGET
|
2019-11-11 06:08:45 +01:00
|
|
|
;
|
2019-05-03 12:34:40 +02:00
|
|
|
|
|
|
|
passthru = {
|
2019-09-20 12:05:57 +02:00
|
|
|
inherit langC langCC langObjC langObjCpp langAda langFortran langGo langD version;
|
2019-05-03 12:34:40 +02:00
|
|
|
isGNU = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
inherit enableMultilib;
|
|
|
|
|
|
|
|
inherit (stdenv) is64bit;
|
|
|
|
|
|
|
|
meta = {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://gcc.gnu.org/";
|
2021-01-22 12:25:31 +01:00
|
|
|
license = lib.licenses.gpl3Plus; # runtime support libraries are typically LGPLv3+
|
2019-05-03 12:34:40 +02:00
|
|
|
description = "GNU Compiler Collection, version ${version}"
|
|
|
|
+ (if stripped then "" else " (with debugging info)");
|
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
The GNU Compiler Collection includes compiler front ends for C, C++,
|
|
|
|
Objective-C, Fortran, OpenMP for C/C++/Fortran, and Ada, as well as
|
|
|
|
libraries for these languages (libstdc++, libgomp,...).
|
|
|
|
|
|
|
|
GCC development is a part of the GNU Project, aiming to improve the
|
|
|
|
compiler used in the GNU system including the GNU/Linux variant.
|
|
|
|
'';
|
|
|
|
|
2021-04-29 10:06:46 +02:00
|
|
|
maintainers = lib.teams.gcc.members;
|
2019-05-03 12:34:40 +02:00
|
|
|
|
2021-06-07 13:14:00 +02:00
|
|
|
platforms = lib.platforms.unix;
|
2019-05-03 12:34:40 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
// optionalAttrs (targetPlatform != hostPlatform && targetPlatform.libc == "msvcrt" && crossStageStatic) {
|
|
|
|
makeFlags = [ "all-gcc" "all-target-libgcc" ];
|
|
|
|
installTargets = "install-gcc install-target-libgcc";
|
|
|
|
}
|
|
|
|
|
|
|
|
// optionalAttrs (enableMultilib) { dontMoveLib64 = true; }
|
|
|
|
)
|