2017-10-18 18:05:39 +00:00
|
|
|
{ stdenv, targetPackages, fetchurl, noSysDirs
|
2016-04-28 09:13:26 +00:00
|
|
|
, langC ? true, langCC ? true, langFortran ? false
|
2018-08-20 18:43:41 +00:00
|
|
|
, langObjC ? stdenv.targetPlatform.isDarwin
|
|
|
|
, langObjCpp ? stdenv.targetPlatform.isDarwin
|
2016-04-28 09:13:26 +00:00
|
|
|
, langJava ? false
|
|
|
|
, langGo ? false
|
|
|
|
, profiledCompiler ? false
|
|
|
|
, staticCompiler ? false
|
|
|
|
, enableShared ? true
|
|
|
|
, texinfo ? null
|
|
|
|
, perl ? null # optional, for texi2pod (then pod2man); required for Java
|
|
|
|
, gmp, mpfr, libmpc, gettext, which
|
|
|
|
, libelf # optional, for link-time optimizations (LTO)
|
|
|
|
, isl ? null # optional, for the Graphite optimization framework.
|
|
|
|
, zlib ? null, boehmgc ? null
|
|
|
|
, zip ? null, unzip ? null, pkgconfig ? null
|
2016-09-13 17:42:55 +00:00
|
|
|
, gtk2 ? null, libart_lgpl ? null
|
2016-04-28 09:13:26 +00:00
|
|
|
, libX11 ? null, libXt ? null, libSM ? null, libICE ? null, libXtst ? null
|
2018-12-31 03:40:47 +00:00
|
|
|
, libXrender ? null, xorgproto ? null
|
|
|
|
, libXrandr ? null, libXi ? null
|
2016-04-28 09:13:26 +00:00
|
|
|
, x11Support ? langJava
|
|
|
|
, enableMultilib ? false
|
2018-08-20 18:43:41 +00:00
|
|
|
, enablePlugin ? stdenv.hostPlatform == stdenv.buildPlatform # Whether to support user-supplied plug-ins
|
2016-04-28 09:13:26 +00:00
|
|
|
, name ? "gcc"
|
|
|
|
, libcCross ? null
|
2017-09-20 19:02:21 +00:00
|
|
|
, crossStageStatic ? false
|
2018-05-10 15:56:52 +00:00
|
|
|
, # Strip kills static libs of other archs (hence no cross)
|
2018-08-20 18:43:41 +00:00
|
|
|
stripped ? stdenv.hostPlatform == stdenv.buildPlatform
|
|
|
|
&& stdenv.targetPlatform == stdenv.hostPlatform
|
2016-04-28 09:13:26 +00:00
|
|
|
, gnused ? null
|
|
|
|
, cloog # unused; just for compat with gcc4, as we override the parameter on some places
|
2017-12-01 22:13:58 +00:00
|
|
|
, buildPackages
|
2016-04-28 09:13:26 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
assert langJava -> zip != null && unzip != null
|
|
|
|
&& zlib != null && boehmgc != null
|
|
|
|
&& perl != null; # for `--enable-java-home'
|
|
|
|
|
|
|
|
# LTO needs libelf and zlib.
|
|
|
|
assert libelf != null -> zlib != null;
|
|
|
|
|
|
|
|
# Make sure we get GNU sed.
|
2018-08-20 18:43:41 +00:00
|
|
|
assert stdenv.hostPlatform.isDarwin -> gnused != null;
|
2016-04-28 09:13:26 +00:00
|
|
|
|
|
|
|
# The go frontend is written in c++
|
|
|
|
assert langGo -> langCC;
|
|
|
|
|
|
|
|
with stdenv.lib;
|
|
|
|
with builtins;
|
|
|
|
|
2018-10-30 12:38:45 +00:00
|
|
|
let version = "6.5.0";
|
2016-04-28 09:13:26 +00:00
|
|
|
|
2018-08-20 18:43:41 +00:00
|
|
|
inherit (stdenv) buildPlatform hostPlatform targetPlatform;
|
|
|
|
|
2016-04-28 09:13:26 +00:00
|
|
|
patches =
|
|
|
|
[ ../use-source-date-epoch.patch ]
|
2017-06-05 00:10:17 +00:00
|
|
|
++ optional (targetPlatform != hostPlatform) ../libstdc++-target.patch
|
2016-04-28 09:13:26 +00:00
|
|
|
++ optional noSysDirs ../no-sys-dirs.patch
|
2017-08-27 20:06:04 +00:00
|
|
|
++ optional langFortran ../gfortran-driving.patch
|
2018-09-25 01:03:50 +00:00
|
|
|
++ optional (targetPlatform.libc == "musl") ../libgomp-dont-force-initial-exec.patch
|
2017-08-27 20:06:04 +00:00
|
|
|
;
|
2016-04-28 09:13:26 +00:00
|
|
|
|
|
|
|
javaEcj = fetchurl {
|
|
|
|
# The `$(top_srcdir)/ecj.jar' file is automatically picked up at
|
|
|
|
# `configure' time.
|
|
|
|
|
|
|
|
# XXX: Eventually we might want to take it from upstream.
|
|
|
|
url = "ftp://sourceware.org/pub/java/ecj-4.3.jar";
|
|
|
|
sha256 = "0jz7hvc0s6iydmhgh5h2m15yza7p2rlss2vkif30vm9y77m97qcx";
|
|
|
|
};
|
|
|
|
|
|
|
|
# Antlr (optional) allows the Java `gjdoc' tool to be built. We want a
|
|
|
|
# binary distribution here to allow the whole chain to be bootstrapped.
|
|
|
|
javaAntlr = fetchurl {
|
2019-04-22 08:14:28 +00:00
|
|
|
url = https://www.antlr.org/download/antlr-4.4-complete.jar;
|
2016-04-28 09:13:26 +00:00
|
|
|
sha256 = "02lda2imivsvsis8rnzmbrbp8rh1kb8vmq4i67pqhkwz7lf8y6dz";
|
|
|
|
};
|
|
|
|
|
|
|
|
xlibs = [
|
|
|
|
libX11 libXt libSM libICE libXtst libXrender libXrandr libXi
|
2018-12-31 03:40:47 +00:00
|
|
|
xorgproto
|
2016-04-28 09:13:26 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
javaAwtGtk = langJava && x11Support;
|
|
|
|
|
2017-11-14 21:08:46 +00:00
|
|
|
/* Cross-gcc settings (build == host != target) */
|
2017-06-05 00:10:17 +00:00
|
|
|
crossMingw = targetPlatform != hostPlatform && targetPlatform.libc == "msvcrt";
|
|
|
|
crossDarwin = targetPlatform != hostPlatform && targetPlatform.libc == "libSystem";
|
2017-12-05 19:01:18 +00:00
|
|
|
crossConfigureFlags =
|
2017-11-14 23:32:50 +00:00
|
|
|
# Ensure that -print-prog-name is able to find the correct programs.
|
|
|
|
[ "--with-as=${targetPackages.stdenv.cc.bintools}/bin/${targetPlatform.config}-as"
|
|
|
|
"--with-ld=${targetPackages.stdenv.cc.bintools}/bin/${targetPlatform.config}-ld" ] ++
|
|
|
|
(if crossMingw && crossStageStatic then [
|
|
|
|
"--with-headers=${libcCross}/include"
|
|
|
|
"--with-gcc"
|
|
|
|
"--with-gnu-as"
|
|
|
|
"--with-gnu-ld"
|
|
|
|
"--with-gnu-ld"
|
|
|
|
"--disable-shared"
|
|
|
|
"--disable-nls"
|
|
|
|
"--disable-debug"
|
|
|
|
"--enable-sjlj-exceptions"
|
|
|
|
"--enable-threads=win32"
|
|
|
|
"--disable-win32-registry"
|
2017-10-31 22:33:23 +00:00
|
|
|
"--disable-libmpx" # requires libc
|
2017-11-14 23:32:50 +00:00
|
|
|
] else if crossStageStatic then [
|
|
|
|
"--disable-libssp"
|
|
|
|
"--disable-nls"
|
|
|
|
"--without-headers"
|
|
|
|
"--disable-threads"
|
|
|
|
"--disable-libgomp"
|
|
|
|
"--disable-libquadmath"
|
|
|
|
"--disable-shared"
|
2017-10-31 22:33:23 +00:00
|
|
|
"--disable-libatomic" # requires libc
|
|
|
|
"--disable-decimal-float" # requires libc
|
|
|
|
"--disable-libmpx" # requires libc
|
2017-11-14 23:32:50 +00:00
|
|
|
] else [
|
|
|
|
(if crossDarwin then "--with-sysroot=${getLib libcCross}/share/sysroot"
|
2018-10-15 21:11:20 +00:00
|
|
|
else "--with-headers=${getDev libcCross}${libcCross.incdir or "/include"}")
|
2017-11-14 23:32:50 +00:00
|
|
|
"--enable-__cxa_atexit"
|
|
|
|
"--enable-long-long"
|
|
|
|
] ++
|
|
|
|
(if crossMingw then [
|
|
|
|
"--enable-threads=win32"
|
|
|
|
"--enable-sjlj-exceptions"
|
|
|
|
"--enable-hash-synchronization"
|
2017-12-29 19:28:16 +00:00
|
|
|
"--enable-libssp"
|
2017-11-14 23:32:50 +00:00
|
|
|
"--disable-nls"
|
|
|
|
"--with-dwarf2"
|
|
|
|
# To keep ABI compatibility with upstream mingw-w64
|
|
|
|
"--enable-fully-dynamic-string"
|
2017-11-14 21:08:46 +00:00
|
|
|
] else
|
2018-01-03 06:24:27 +00:00
|
|
|
optionals (targetPlatform.libc == "uclibc" || targetPlatform.libc == "musl") [
|
2017-11-14 23:32:50 +00:00
|
|
|
# libsanitizer requires netrom/netrom.h which is not
|
|
|
|
# available in uclibc.
|
|
|
|
"--disable-libsanitizer"
|
|
|
|
# In uclibc cases, libgomp needs an additional '-ldl'
|
|
|
|
# and as I don't know how to pass it, I disable libgomp.
|
|
|
|
"--disable-libgomp"
|
2018-02-09 16:08:36 +00:00
|
|
|
# musl at least, disable: https://git.buildroot.net/buildroot/commit/?id=873d4019f7fb00f6a80592224236b3ba7d657865
|
|
|
|
"--disable-libmpx"
|
2018-10-15 21:11:20 +00:00
|
|
|
]
|
|
|
|
++ optional (targetPlatform.libc == "newlib") "--with-newlib"
|
|
|
|
++ optional (targetPlatform.libc == "avrlibc") "--with-avrlibc"
|
|
|
|
++ [
|
|
|
|
"--enable-threads=${if targetPlatform.isUnix then "posix"
|
|
|
|
else if targetPlatform.isWindows then "win32"
|
|
|
|
else "single"}"
|
|
|
|
"--enable-nls"
|
|
|
|
"--disable-decimal-float" # No final libdecnumber (it may work only in 386)
|
2017-11-14 23:32:50 +00:00
|
|
|
]));
|
2016-04-28 09:13:26 +00:00
|
|
|
stageNameAddon = if crossStageStatic then "-stage-static" else "-stage-final";
|
2018-04-15 00:00:00 +00:00
|
|
|
crossNameAddon = if targetPlatform != hostPlatform then "${targetPlatform.config}${stageNameAddon}-" else "";
|
2016-04-28 09:13:26 +00:00
|
|
|
|
2017-11-29 19:53:13 +00:00
|
|
|
bootstrap = targetPlatform == hostPlatform;
|
2016-04-28 09:13:26 +00:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
# We need all these X libraries when building AWT with GTK+.
|
2016-09-13 17:42:55 +00:00
|
|
|
assert x11Support -> (filter (x: x == null) ([ gtk2 libart_lgpl ] ++ xlibs)) == [];
|
2016-04-28 09:13:26 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation ({
|
2018-04-15 00:00:00 +00:00
|
|
|
name = crossNameAddon + "${name}${if stripped then "" else "-debug"}-${version}";
|
2016-04-28 09:13:26 +00:00
|
|
|
|
|
|
|
builder = ../builder.sh;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2017-07-04 16:39:18 +00:00
|
|
|
url = "mirror://gnu/gcc/gcc-${version}/gcc-${version}.tar.xz";
|
2018-10-30 12:38:45 +00:00
|
|
|
sha256 = "0i89fksfp6wr1xg9l8296aslcymv2idn60ip31wr9s4pwin7kwby";
|
2016-04-28 09:13:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
inherit patches;
|
|
|
|
|
2017-09-28 19:51:00 +00:00
|
|
|
outputs = if langJava || langGo then ["out" "man" "info"]
|
|
|
|
else [ "out" "lib" "man" "info" ];
|
2016-04-28 09:13:26 +00:00
|
|
|
setOutputFlags = false;
|
|
|
|
NIX_NO_SELF_RPATH = true;
|
|
|
|
|
|
|
|
libc_dev = stdenv.cc.libc_dev;
|
|
|
|
|
2018-11-10 19:49:36 +00:00
|
|
|
hardeningDisable = [ "format" "pie" ];
|
2016-06-14 11:45:47 +00:00
|
|
|
|
2018-11-15 21:02:42 +00:00
|
|
|
prePatch =
|
|
|
|
(stdenv.lib.optionalString (langJava || langGo) ''
|
|
|
|
export lib=$out
|
|
|
|
'')
|
|
|
|
|
|
|
|
# This should kill all the stdinc frameworks that gcc and friends like to
|
|
|
|
# insert into default search paths.
|
|
|
|
+ stdenv.lib.optionalString hostPlatform.isDarwin ''
|
|
|
|
substituteInPlace gcc/config/darwin-c.c \
|
|
|
|
--replace 'if (stdinc)' 'if (0)'
|
|
|
|
|
|
|
|
substituteInPlace libgcc/config/t-slibgcc-darwin \
|
|
|
|
--replace "-install_name @shlib_slibdir@/\$(SHLIB_INSTALL_NAME)" "-install_name $lib/lib/\$(SHLIB_INSTALL_NAME)"
|
|
|
|
|
|
|
|
substituteInPlace libgfortran/configure \
|
|
|
|
--replace "-install_name \\\$rpath/\\\$soname" "-install_name $lib/lib/\\\$soname"
|
|
|
|
'';
|
2017-08-16 20:35:06 +00:00
|
|
|
|
2016-04-28 09:13:26 +00:00
|
|
|
postPatch =
|
2018-08-28 21:17:54 +00:00
|
|
|
if targetPlatform != hostPlatform || stdenv.cc.libc != null then
|
2016-04-28 09:13:26 +00:00
|
|
|
# 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
|
2018-01-04 22:36:56 +00:00
|
|
|
(
|
2018-01-04 22:20:45 +00:00
|
|
|
'' echo "fixing the \`GLIBC_DYNAMIC_LINKER', \`UCLIBC_DYNAMIC_LINKER', and \`MUSL_DYNAMIC_LINKER' macros..."
|
2016-04-28 09:13:26 +00:00
|
|
|
for header in "gcc/config/"*-gnu.h "gcc/config/"*"/"*.h
|
|
|
|
do
|
2018-01-04 22:20:45 +00:00
|
|
|
grep -q _DYNAMIC_LINKER "$header" || continue
|
2016-04-28 09:13:26 +00:00
|
|
|
echo " fixing \`$header'..."
|
|
|
|
sed -i "$header" \
|
2018-01-04 22:20:45 +00:00
|
|
|
-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'
|
2016-04-28 09:13:26 +00:00
|
|
|
done
|
|
|
|
''
|
2018-01-04 22:36:56 +00:00
|
|
|
+ stdenv.lib.optionalString (targetPlatform.libc == "musl")
|
|
|
|
''
|
|
|
|
sed -i gcc/config/linux.h -e '1i#undef LOCAL_INCLUDE_DIR'
|
|
|
|
''
|
|
|
|
)
|
2016-04-28 09:13:26 +00:00
|
|
|
else null;
|
|
|
|
|
2018-09-05 18:28:04 +00:00
|
|
|
inherit noSysDirs staticCompiler langJava crossStageStatic
|
2016-04-28 09:13:26 +00:00
|
|
|
libcCross crossMingw;
|
|
|
|
|
2017-08-17 06:05:56 +00:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2016-04-28 09:13:26 +00:00
|
|
|
nativeBuildInputs = [ texinfo which gettext ]
|
|
|
|
++ (optional (perl != null) perl)
|
|
|
|
++ (optional javaAwtGtk pkgconfig);
|
|
|
|
|
2017-09-04 19:48:52 +00:00
|
|
|
# For building runtime libs
|
|
|
|
depsBuildTarget =
|
|
|
|
if hostPlatform == buildPlatform then [
|
|
|
|
targetPackages.stdenv.cc.bintools # newly-built gcc will be used
|
|
|
|
] else assert targetPlatform == hostPlatform; [ # build != host == target
|
|
|
|
stdenv.cc
|
|
|
|
];
|
|
|
|
|
|
|
|
buildInputs = [
|
|
|
|
gmp mpfr libmpc libelf
|
|
|
|
targetPackages.stdenv.cc.bintools # For linking code at run-time
|
|
|
|
] ++ (optional (isl != null) isl)
|
2016-04-28 09:13:26 +00:00
|
|
|
++ (optional (zlib != null) zlib)
|
|
|
|
++ (optionals langJava [ boehmgc zip unzip ])
|
2016-09-13 17:42:55 +00:00
|
|
|
++ (optionals javaAwtGtk ([ gtk2 libart_lgpl ] ++ xlibs))
|
2016-04-28 09:13:26 +00:00
|
|
|
# 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.
|
2017-06-05 03:55:29 +00:00
|
|
|
++ (optional hostPlatform.isDarwin gnused)
|
2016-04-28 09:13:26 +00:00
|
|
|
;
|
|
|
|
|
2017-06-05 03:55:29 +00:00
|
|
|
NIX_LDFLAGS = stdenv.lib.optionalString hostPlatform.isSunOS "-lm -ldl";
|
2016-04-28 09:13:26 +00:00
|
|
|
|
2017-06-05 03:55:29 +00:00
|
|
|
preConfigure = stdenv.lib.optionalString (hostPlatform.isSunOS && hostPlatform.is64bit) ''
|
2016-04-28 09:13:26 +00:00
|
|
|
export NIX_LDFLAGS=`echo $NIX_LDFLAGS | sed -e s~$prefix/lib~$prefix/lib/amd64~g`
|
|
|
|
export LDFLAGS_FOR_TARGET="-Wl,-rpath,$prefix/lib/amd64 $LDFLAGS_FOR_TARGET"
|
|
|
|
export CXXFLAGS_FOR_TARGET="-Wl,-rpath,$prefix/lib/amd64 $CXXFLAGS_FOR_TARGET"
|
|
|
|
export CFLAGS_FOR_TARGET="-Wl,-rpath,$prefix/lib/amd64 $CFLAGS_FOR_TARGET"
|
2017-09-28 19:51:00 +00:00
|
|
|
''
|
|
|
|
+ stdenv.lib.optionalString (langJava || langGo) ''
|
|
|
|
export lib=$out;
|
2018-09-04 19:50:01 +00:00
|
|
|
'';
|
2016-04-28 09:13:26 +00:00
|
|
|
|
|
|
|
dontDisableStatic = true;
|
|
|
|
|
2017-08-18 17:54:09 +00:00
|
|
|
# TODO(@Ericson2314): Always pass "--target" and always prefix.
|
2018-04-27 00:20:37 +00:00
|
|
|
configurePlatforms = [ "build" "host" ] ++ stdenv.lib.optional (targetPlatform != hostPlatform) "target";
|
2017-08-23 18:34:33 +00:00
|
|
|
|
2017-11-14 21:08:46 +00:00
|
|
|
configureFlags =
|
|
|
|
# Basic dependencies
|
|
|
|
[
|
|
|
|
"--with-gmp-include=${gmp.dev}/include"
|
|
|
|
"--with-gmp-lib=${gmp.out}/lib"
|
|
|
|
"--with-mpfr-include=${mpfr.dev}/include"
|
|
|
|
"--with-mpfr-lib=${mpfr.out}/lib"
|
|
|
|
"--with-mpc=${libmpc}"
|
|
|
|
] ++
|
|
|
|
optional (libelf != null) "--with-libelf=${libelf}" ++
|
2017-12-07 07:13:24 +00:00
|
|
|
optional (!(crossMingw && crossStageStatic))
|
|
|
|
"--with-native-system-header-dir=${getDev stdenv.cc.libc}/include" ++
|
2017-11-14 21:08:46 +00:00
|
|
|
|
|
|
|
# Basic configuration
|
|
|
|
[
|
|
|
|
"--enable-lto"
|
|
|
|
"--disable-libstdcxx-pch"
|
|
|
|
"--without-included-gettext"
|
|
|
|
"--with-system-zlib"
|
|
|
|
"--enable-static"
|
|
|
|
"--enable-languages=${
|
|
|
|
concatStrings (intersperse ","
|
|
|
|
( optional langC "c"
|
|
|
|
++ optional langCC "c++"
|
|
|
|
++ optional langFortran "fortran"
|
|
|
|
++ optional langJava "java"
|
|
|
|
++ optional langGo "go"
|
|
|
|
++ optional langObjC "objc"
|
|
|
|
++ optional langObjCpp "obj-c++"
|
|
|
|
++ optionals crossDarwin [ "objc" "obj-c++" ]
|
|
|
|
)
|
|
|
|
)
|
|
|
|
}"
|
|
|
|
] ++
|
|
|
|
|
2018-10-15 21:11:20 +00:00
|
|
|
(if (enableMultilib || targetPlatform.isAvr)
|
2017-11-14 21:08:46 +00:00
|
|
|
then ["--enable-multilib" "--disable-libquadmath"]
|
|
|
|
else ["--disable-multilib"]) ++
|
|
|
|
optional (!enableShared) "--disable-shared" ++
|
|
|
|
(if enablePlugin
|
|
|
|
then ["--enable-plugin"]
|
|
|
|
else ["--disable-plugin"]) ++
|
|
|
|
|
|
|
|
# Optional features
|
|
|
|
optional (isl != null) "--with-isl=${isl}" ++
|
|
|
|
|
|
|
|
# Java options
|
|
|
|
optionals langJava [
|
2017-11-14 23:32:50 +00:00
|
|
|
"--with-ecj-jar=${javaEcj}"
|
2016-04-28 09:13:26 +00:00
|
|
|
|
|
|
|
# Follow Sun's layout for the convenience of IcedTea/OpenJDK. See
|
|
|
|
# <http://mail.openjdk.java.net/pipermail/distro-pkg-dev/2010-April/008888.html>.
|
2017-11-14 21:08:46 +00:00
|
|
|
"--enable-java-home"
|
|
|
|
"--with-java-home=\${prefix}/lib/jvm/jre"
|
|
|
|
] ++
|
|
|
|
optional javaAwtGtk "--enable-java-awt=gtk" ++
|
|
|
|
optional (langJava && javaAntlr != null) "--with-antlr-jar=${javaAntlr}" ++
|
|
|
|
|
2018-05-10 21:13:52 +00:00
|
|
|
(import ../common/platform-flags.nix { inherit (stdenv) lib targetPlatform; }) ++
|
2017-11-14 21:08:46 +00:00
|
|
|
optional (targetPlatform != hostPlatform) crossConfigureFlags ++
|
|
|
|
optional (!bootstrap) "--disable-bootstrap" ++
|
|
|
|
|
|
|
|
# Platform-specific flags
|
2019-01-06 18:57:36 +00:00
|
|
|
optional (targetPlatform == hostPlatform && targetPlatform.isx86_32) "--with-arch=${stdenv.hostPlatform.parsed.cpu.name}" ++
|
2017-11-29 19:53:13 +00:00
|
|
|
optionals hostPlatform.isSunOS [
|
2017-11-14 23:32:50 +00:00
|
|
|
"--enable-long-long" "--enable-libssp" "--enable-threads=posix" "--disable-nls" "--enable-__cxa_atexit"
|
2017-11-14 21:08:46 +00:00
|
|
|
# On Illumos/Solaris GNU as is preferred
|
2017-11-14 23:32:50 +00:00
|
|
|
"--with-gnu-as" "--without-gnu-ld"
|
2017-11-14 21:08:46 +00:00
|
|
|
]
|
2018-09-25 01:03:50 +00:00
|
|
|
++ optionals (targetPlatform == hostPlatform && targetPlatform.libc == "musl") [
|
|
|
|
"--disable-libsanitizer"
|
|
|
|
"--disable-symvers"
|
|
|
|
"libat_cv_have_ifunc=no"
|
|
|
|
"--disable-gnu-indirect-function"
|
|
|
|
]
|
2017-11-14 21:08:46 +00:00
|
|
|
;
|
2016-04-28 09:13:26 +00:00
|
|
|
|
2017-06-05 00:10:17 +00:00
|
|
|
targetConfig = if targetPlatform != hostPlatform then targetPlatform.config else null;
|
2016-04-28 09:13:26 +00:00
|
|
|
|
2018-05-10 15:56:52 +00:00
|
|
|
buildFlags = optional
|
|
|
|
(bootstrap && hostPlatform == buildPlatform)
|
|
|
|
(if profiledCompiler then "profiledbootstrap" else "bootstrap");
|
|
|
|
|
|
|
|
dontStrip = !stripped;
|
2016-04-28 09:13:26 +00:00
|
|
|
|
2018-04-25 03:20:18 +00:00
|
|
|
doCheck = false; # requires a lot of tools, causes a dependency cycle for stdenv
|
|
|
|
|
2016-04-28 09:13:26 +00:00
|
|
|
installTargets =
|
|
|
|
if stripped
|
|
|
|
then "install-strip"
|
|
|
|
else "install";
|
|
|
|
|
2018-12-01 18:22:13 +00:00
|
|
|
# https://gcc.gnu.org/install/specific.html#x86-64-x-solaris210
|
2017-11-28 23:37:11 +00:00
|
|
|
${if hostPlatform.system == "x86_64-solaris" then "CC" else null} = "gcc -m64";
|
2016-04-28 09:13:26 +00:00
|
|
|
|
2017-12-02 17:26:49 +00:00
|
|
|
# Setting $CPATH and $LIBRARY_PATH to make sure both `gcc' and `xgcc' find the
|
|
|
|
# library headers and binaries, regarless of the language being compiled.
|
|
|
|
#
|
|
|
|
# Note: When building the Java AWT GTK+ peer, the build system doesn't honor
|
|
|
|
# `--with-gmp' et al., e.g., when building
|
|
|
|
# `libjava/classpath/native/jni/java-math/gnu_java_math_GMP.c', so we just add
|
|
|
|
# them to $CPATH and $LIBRARY_PATH in this case.
|
2016-04-28 09:13:26 +00:00
|
|
|
#
|
|
|
|
# Likewise, the LTO code doesn't find zlib.
|
2017-12-02 17:26:49 +00:00
|
|
|
#
|
|
|
|
# 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.
|
2016-04-28 09:13:26 +00:00
|
|
|
|
2017-12-02 17:26:49 +00:00
|
|
|
CPATH = optionals (targetPlatform == hostPlatform) (makeSearchPathOutput "dev" "include" ([]
|
2016-09-05 20:41:30 +00:00
|
|
|
++ optional (zlib != null) zlib
|
|
|
|
++ optional langJava boehmgc
|
|
|
|
++ optionals javaAwtGtk xlibs
|
|
|
|
++ optionals javaAwtGtk [ gmp mpfr ]
|
2017-12-02 17:26:49 +00:00
|
|
|
));
|
2016-09-05 20:41:30 +00:00
|
|
|
|
2017-12-02 17:26:49 +00:00
|
|
|
LIBRARY_PATH = optionals (targetPlatform == hostPlatform) (makeLibraryPath ([]
|
2016-09-05 20:41:30 +00:00
|
|
|
++ optional (zlib != null) zlib
|
|
|
|
++ optional langJava boehmgc
|
|
|
|
++ optionals javaAwtGtk xlibs
|
2018-09-04 19:50:01 +00:00
|
|
|
++ optionals javaAwtGtk [ gmp mpfr ]
|
|
|
|
));
|
2017-12-02 17:26:49 +00:00
|
|
|
|
|
|
|
EXTRA_TARGET_FLAGS = optionals
|
|
|
|
(targetPlatform != hostPlatform && libcCross != null)
|
|
|
|
([
|
2018-10-15 21:11:20 +00:00
|
|
|
"-idirafter ${getDev libcCross}${libcCross.incdir or "/include"}"
|
2017-12-02 17:26:49 +00:00
|
|
|
] ++ optionals (! crossStageStatic) [
|
2018-10-15 21:11:20 +00:00
|
|
|
"-B${libcCross.out}${libcCross.libdir or "/lib"}"
|
2017-12-02 17:26:49 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
EXTRA_TARGET_LDFLAGS = optionals
|
|
|
|
(targetPlatform != hostPlatform && libcCross != null)
|
|
|
|
([
|
2018-10-15 21:11:20 +00:00
|
|
|
"-Wl,-L${libcCross.out}${libcCross.libdir or "/lib"}"
|
2017-12-02 17:26:49 +00:00
|
|
|
] ++ (if crossStageStatic then [
|
2018-10-15 21:11:20 +00:00
|
|
|
"-B${libcCross.out}${libcCross.libdir or "/lib"}"
|
2016-05-30 19:20:33 +00:00
|
|
|
] else [
|
2018-10-15 21:11:20 +00:00
|
|
|
"-Wl,-rpath,${libcCross.out}${libcCross.libdir or "/lib"}"
|
|
|
|
"-Wl,-rpath-link,${libcCross.out}${libcCross.libdir or "/lib"}"
|
2018-08-28 21:17:54 +00:00
|
|
|
]));
|
2016-04-28 09:13:26 +00:00
|
|
|
|
2018-09-04 19:50:01 +00:00
|
|
|
passthru = {
|
|
|
|
inherit langC langCC langObjC langObjCpp langFortran langGo version;
|
|
|
|
isGNU = true;
|
|
|
|
};
|
2016-04-28 09:13:26 +00:00
|
|
|
|
2018-09-04 19:50:01 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
inherit enableMultilib;
|
2016-04-28 09:13:26 +00:00
|
|
|
|
|
|
|
inherit (stdenv) is64bit;
|
|
|
|
|
|
|
|
meta = {
|
2018-12-01 18:22:13 +00:00
|
|
|
homepage = https://gcc.gnu.org/;
|
2016-04-28 09:13:26 +00:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus; # runtime support libraries are typically LGPLv3+
|
|
|
|
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, Java, and Ada, as well
|
|
|
|
as libraries for these languages (libstdc++, libgcj, 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.
|
|
|
|
'';
|
|
|
|
|
2018-07-22 19:50:19 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ peti ];
|
2016-04-28 09:13:26 +00:00
|
|
|
|
|
|
|
platforms =
|
|
|
|
stdenv.lib.platforms.linux ++
|
|
|
|
stdenv.lib.platforms.freebsd ++
|
2018-09-04 19:50:01 +00:00
|
|
|
stdenv.lib.platforms.illumos ++
|
2018-03-08 18:56:36 +00:00
|
|
|
stdenv.lib.platforms.darwin;
|
2016-04-28 09:13:26 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-06-05 00:10:17 +00:00
|
|
|
// optionalAttrs (targetPlatform != hostPlatform && targetPlatform.libc == "msvcrt" && crossStageStatic) {
|
2016-04-28 09:13:26 +00:00
|
|
|
makeFlags = [ "all-gcc" "all-target-libgcc" ];
|
|
|
|
installTargets = "install-gcc install-target-libgcc";
|
|
|
|
}
|
|
|
|
|
|
|
|
// optionalAttrs (enableMultilib) { dontMoveLib64 = true; }
|
2017-09-28 19:51:00 +00:00
|
|
|
|
2018-11-15 21:02:42 +00:00
|
|
|
// optionalAttrs (langJava && !stdenv.hostPlatform.isDarwin) {
|
2017-09-28 19:51:00 +00:00
|
|
|
postFixup = ''
|
|
|
|
target="$(echo "$out/libexec/gcc"/*/*/ecj*)"
|
|
|
|
patchelf --set-rpath "$(patchelf --print-rpath "$target"):$out/lib" "$target"
|
|
|
|
'';}
|
2016-04-28 09:13:26 +00:00
|
|
|
)
|