2018-09-01 22:30:41 +02:00
|
|
|
{ stdenv, lib, buildPackages
|
2019-05-01 04:50:21 +02:00
|
|
|
, fetchurl, zlib, autoreconfHook, gettext
|
2018-09-01 22:30:41 +02:00
|
|
|
# Enabling all targets increases output size to a multiple.
|
|
|
|
, withAllTargets ? false, libbfd, libopcodes
|
|
|
|
, enableShared ? true
|
2019-05-11 03:49:26 +02:00
|
|
|
, noSysDirs
|
|
|
|
, gold ? !stdenv.buildPlatform.isDarwin || stdenv.hostPlatform == stdenv.targetPlatform
|
|
|
|
, bison ? null
|
2014-01-07 13:57:42 +01:00
|
|
|
}:
|
2004-03-09 18:16:02 +01:00
|
|
|
|
2017-06-04 02:28:05 +02:00
|
|
|
let
|
2018-09-01 22:30:41 +02:00
|
|
|
reuseLibs = enableShared && withAllTargets;
|
|
|
|
|
2018-03-28 18:40:44 +02:00
|
|
|
# Remove gold-symbol-visibility patch when updating, the proper fix
|
|
|
|
# is now upstream.
|
|
|
|
# https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;a=commitdiff;h=330b90b5ffbbc20c5de6ae6c7f60c40fab2e7a4f;hp=99181ccac0fc7d82e7dabb05dc7466e91f1645d3
|
2019-01-20 19:03:00 +01:00
|
|
|
version = "2.31.1";
|
2017-06-04 02:28:05 +02:00
|
|
|
basename = "binutils-${version}";
|
2017-11-25 19:43:57 +01:00
|
|
|
# The targetPrefix prepended to binary names to allow multiple binuntils on the
|
2017-06-23 23:45:27 +02:00
|
|
|
# PATH to both be usable.
|
2018-09-01 22:30:41 +02:00
|
|
|
targetPrefix = lib.optionalString (stdenv.targetPlatform != stdenv.hostPlatform)
|
|
|
|
"${stdenv.targetPlatform.config}-";
|
2017-06-04 02:28:05 +02:00
|
|
|
in
|
2013-09-02 15:54:12 +02:00
|
|
|
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2017-11-25 19:43:57 +01:00
|
|
|
name = targetPrefix + basename;
|
2009-11-08 01:32:12 +01:00
|
|
|
|
2018-05-22 23:37:29 +02:00
|
|
|
# HACK to ensure that we preserve source from bootstrap binutils to not rebuild LLVM
|
|
|
|
src = stdenv.__bootPackages.binutils-unwrapped.src or (fetchurl {
|
2011-10-03 21:11:09 +02:00
|
|
|
url = "mirror://gnu/binutils/${basename}.tar.bz2";
|
2019-01-20 19:03:00 +01:00
|
|
|
sha256 = "1l34hn1zkmhr1wcrgf0d4z7r3najxnw3cx2y2fk7v55zjlk3ik7z";
|
2018-05-22 23:37:29 +02:00
|
|
|
});
|
2008-05-29 16:16:35 +02:00
|
|
|
|
|
|
|
patches = [
|
2014-01-07 13:57:42 +01:00
|
|
|
# Make binutils output deterministic by default.
|
|
|
|
./deterministic.patch
|
2014-03-08 21:57:18 +01:00
|
|
|
|
2016-10-14 17:52:14 +02:00
|
|
|
# Bfd looks in BINDIR/../lib for some plugins that don't
|
|
|
|
# exist. This is pointless (since users can't install plugins
|
|
|
|
# there) and causes a cycle between the lib and bin outputs, so
|
|
|
|
# get rid of it.
|
|
|
|
./no-plugins.patch
|
2017-11-19 04:30:43 +01:00
|
|
|
|
|
|
|
# Help bfd choose between elf32-littlearm, elf32-littlearm-symbian, and
|
|
|
|
# elf32-littlearm-vxworks in favor of the first.
|
|
|
|
# https://github.com/NixOS/nixpkgs/pull/30484#issuecomment-345472766
|
|
|
|
./disambiguate-arm-targets.patch
|
2017-10-26 22:00:37 +02:00
|
|
|
|
|
|
|
# For some reason bfd ld doesn't search DT_RPATH when cross-compiling. It's
|
|
|
|
# not clear why this behavior was decided upon but it has the unfortunate
|
|
|
|
# consequence that the linker will fail to find transitive dependencies of
|
|
|
|
# shared objects when cross-compiling. Consequently, we are forced to
|
|
|
|
# override this behavior, forcing ld to search DT_RPATH even when
|
|
|
|
# cross-compiling.
|
|
|
|
./always-search-rpath.patch
|
2018-03-19 16:00:41 +01:00
|
|
|
|
|
|
|
# https://sourceware.org/bugzilla/show_bug.cgi?id=22868
|
|
|
|
./gold-symbol-visibility.patch
|
2019-01-22 13:05:56 +01:00
|
|
|
|
|
|
|
# https://sourceware.org/bugzilla/show_bug.cgi?id=23428
|
|
|
|
# un-break features so linking against musl doesn't produce crash-only binaries
|
|
|
|
./0001-x86-Add-a-GNU_PROPERTY_X86_ISA_1_USED-note-if-needed.patch
|
|
|
|
./0001-x86-Properly-merge-GNU_PROPERTY_X86_ISA_1_USED.patch
|
2019-01-22 13:13:01 +01:00
|
|
|
./0001-x86-Properly-add-X86_ISA_1_NEEDED-property.patch
|
2019-05-11 03:49:26 +02:00
|
|
|
] ++ lib.optional stdenv.targetPlatform.isiOS ./support-ios.patch;
|
2009-11-08 01:32:12 +01:00
|
|
|
|
2017-11-26 20:46:34 +01:00
|
|
|
outputs = [ "out" "info" "man" ];
|
2016-02-28 01:10:35 +01:00
|
|
|
|
2017-06-26 05:10:03 +02:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
2018-04-16 01:22:08 +02:00
|
|
|
nativeBuildInputs = [
|
|
|
|
bison
|
2018-09-01 22:30:41 +02:00
|
|
|
] ++ lib.optionals stdenv.targetPlatform.isiOS [
|
2019-01-20 19:03:00 +01:00
|
|
|
autoreconfHook
|
2018-04-16 01:22:08 +02:00
|
|
|
];
|
2019-05-01 04:50:21 +02:00
|
|
|
buildInputs = [ zlib gettext ];
|
2010-12-13 00:35:16 +01:00
|
|
|
|
2004-03-29 19:23:01 +02:00
|
|
|
inherit noSysDirs;
|
2008-05-29 16:16:35 +02:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
# Clear the default library search path.
|
|
|
|
if test "$noSysDirs" = "1"; then
|
2013-09-02 15:54:12 +02:00
|
|
|
echo 'NATIVE_LIB_DIRS=' >> ld/configure.tgt
|
2008-05-29 16:16:35 +02:00
|
|
|
fi
|
2010-01-19 18:41:54 +01:00
|
|
|
|
|
|
|
# Use symlinks instead of hard links to save space ("strip" in the
|
|
|
|
# fixup phase strips each hard link separately).
|
2014-01-07 14:55:55 +01:00
|
|
|
for i in binutils/Makefile.in gas/Makefile.in ld/Makefile.in gold/Makefile.in; do
|
2012-01-19 16:02:47 +01:00
|
|
|
sed -i "$i" -e 's|ln |ln -s |'
|
2010-01-19 18:41:54 +01:00
|
|
|
done
|
2008-05-29 16:16:35 +02:00
|
|
|
'';
|
2009-11-08 01:32:12 +01:00
|
|
|
|
2011-10-25 20:35:17 +02:00
|
|
|
# As binutils takes part in the stdenv building, we don't want references
|
|
|
|
# to the bootstrap-tools libgcc (as uses to happen on arm/mips)
|
2018-08-20 20:43:41 +02:00
|
|
|
NIX_CFLAGS_COMPILE = if stdenv.hostPlatform.isDarwin
|
2015-06-12 02:58:26 +02:00
|
|
|
then "-Wno-string-plus-int -Wno-deprecated-declarations"
|
|
|
|
else "-static-libgcc";
|
2011-10-25 20:35:17 +02:00
|
|
|
|
2018-11-10 20:49:36 +01:00
|
|
|
hardeningDisable = [ "format" "pie" ];
|
2018-06-13 04:54:10 +02:00
|
|
|
|
2017-11-25 19:43:57 +01:00
|
|
|
# TODO(@Ericson2314): Always pass "--target" and always targetPrefix.
|
2018-09-01 22:30:41 +02:00
|
|
|
configurePlatforms = [ "build" "host" ] ++ lib.optional (stdenv.targetPlatform != stdenv.hostPlatform) "target";
|
2017-08-18 19:00:24 +02:00
|
|
|
|
2018-09-01 22:30:41 +02:00
|
|
|
configureFlags =
|
|
|
|
(if enableShared then [ "--enable-shared" "--disable-static" ]
|
|
|
|
else [ "--disable-shared" "--enable-static" ])
|
|
|
|
++ lib.optional withAllTargets "--enable-targets=all"
|
|
|
|
++ [
|
2018-09-01 18:13:31 +02:00
|
|
|
"--enable-64-bit-bfd"
|
2017-10-17 22:44:24 +02:00
|
|
|
"--with-system-zlib"
|
|
|
|
|
|
|
|
"--enable-deterministic-archives"
|
|
|
|
"--disable-werror"
|
|
|
|
"--enable-fix-loongson2f-nop"
|
Enable new dtags in a way that works with binutils 2.30.
In 3027bca, binutils was upgraded from 2.28.1 to 2.30. However, in 2.30,
the ldmain.c file within binutils, which the nixpkgs new-dtags.patch
file is meant to modify, was changed in such a way that the patch no
longer works. As a result, the new dtags are not actually enabled, and
binaries are built with RPATH set instead of RUNPATH, thereby preventing
LD_LIBRARY_PATH from overriding this built-in path. This change corrects
this. The patch file is no longer necessary because binutils's ldmain.c
now sets link_info.new_dtags based on the configuration flags.
This was probably not noticed immediately because, when the derivation
is built with nix-build, the fixupPhase runs patchelf --shrink-rpath.
patchelf converts any RPATH in the binary into RUNPATH (unless
--force-rpath is specified). Of course, if the binary is built without
nix-build (such as in a nix-shell), this never occurs, and any RPATH in
the binary is left in place.
2018-07-14 17:32:10 +02:00
|
|
|
|
|
|
|
# Turn on --enable-new-dtags by default to make the linker set
|
|
|
|
# RUNPATH instead of RPATH on binaries. This is important because
|
|
|
|
# RUNPATH can be overriden using LD_LIBRARY_PATH at runtime.
|
|
|
|
"--enable-new-dtags"
|
2018-09-01 22:30:41 +02:00
|
|
|
] ++ lib.optionals gold [ "--enable-gold" "--enable-plugins" ];
|
2007-04-28 01:30:07 +02:00
|
|
|
|
2018-04-25 05:20:18 +02:00
|
|
|
doCheck = false; # fails
|
|
|
|
|
2018-09-01 22:30:41 +02:00
|
|
|
postFixup = lib.optionalString reuseLibs ''
|
|
|
|
rm "$out"/lib/lib{bfd,opcodes}-${version}.so
|
|
|
|
ln -s '${lib.getLib libbfd}/lib/libbfd-${version}.so' "$out/lib/"
|
|
|
|
ln -s '${lib.getLib libopcodes}/lib/libopcodes-${version}.so' "$out/lib/"
|
|
|
|
'';
|
|
|
|
|
2018-08-08 23:09:49 +02:00
|
|
|
# else fails with "./sanity.sh: line 36: $out/bin/size: not found"
|
2018-08-20 20:43:41 +02:00
|
|
|
doInstallCheck = stdenv.buildPlatform == stdenv.hostPlatform && stdenv.hostPlatform == stdenv.targetPlatform;
|
2018-08-08 23:09:49 +02:00
|
|
|
|
2011-12-14 15:31:56 +01:00
|
|
|
enableParallelBuilding = true;
|
2013-09-02 15:54:12 +02:00
|
|
|
|
2017-06-23 23:45:27 +02:00
|
|
|
passthru = {
|
2017-11-25 19:43:57 +01:00
|
|
|
inherit targetPrefix version;
|
2017-06-23 23:45:27 +02:00
|
|
|
};
|
|
|
|
|
2018-09-01 22:30:41 +02:00
|
|
|
meta = with lib; {
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "Tools for manipulating binaries (linker, assembler, etc.)";
|
2009-02-03 20:36:56 +01:00
|
|
|
longDescription = ''
|
|
|
|
The GNU Binutils are a collection of binary tools. The main
|
|
|
|
ones are `ld' (the GNU linker) and `as' (the GNU assembler).
|
|
|
|
They also include the BFD (Binary File Descriptor) library,
|
|
|
|
`gprof', `nm', `strip', etc.
|
|
|
|
'';
|
2018-12-01 19:22:13 +01:00
|
|
|
homepage = https://www.gnu.org/software/binutils/;
|
2016-01-25 11:16:23 +01:00
|
|
|
license = licenses.gpl3Plus;
|
2017-11-14 16:49:30 +01:00
|
|
|
maintainers = with maintainers; [ ericson2314 ];
|
2016-01-25 11:16:23 +01:00
|
|
|
platforms = platforms.unix;
|
2007-04-28 01:30:07 +02:00
|
|
|
|
|
|
|
/* Give binutils a lower priority than gcc-wrapper to prevent a
|
|
|
|
collision due to the ld/as wrappers/symlinks in the latter. */
|
2017-04-29 05:02:37 +02:00
|
|
|
priority = 10;
|
2007-04-28 01:30:07 +02:00
|
|
|
};
|
2012-03-12 16:34:00 +01:00
|
|
|
}
|