2011-05-04 14:22:56 +02:00
|
|
|
{ stdenv, fetchurl, noSysDirs, zlib, cross ? null, gold ? false, bison ? null, flex2535 ? null, bc ? null, dejagnu ? null }:
|
2004-03-09 18:16:02 +01:00
|
|
|
|
2011-12-13 17:47:29 +01:00
|
|
|
let basename = "binutils-2.21.1a"; in
|
2008-10-29 09:57:58 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2010-10-12 01:18:00 +02:00
|
|
|
name = basename + stdenv.lib.optionalString (cross != null) "-${cross.config}";
|
2009-11-08 01:32:12 +01:00
|
|
|
|
2003-11-03 11:22:00 +01:00
|
|
|
src = fetchurl {
|
2011-10-03 21:11:09 +02:00
|
|
|
url = "mirror://gnu/binutils/${basename}.tar.bz2";
|
2011-12-13 17:47:29 +01:00
|
|
|
sha256 = "0m7nmd7gc9d9md43wbrv65hz6lbi2crqwryzpigv19ray1lzmv6d";
|
2003-11-03 11:22:00 +01:00
|
|
|
};
|
2008-05-29 16:16:35 +02:00
|
|
|
|
|
|
|
patches = [
|
|
|
|
# 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.
|
|
|
|
./new-dtags.patch
|
2010-10-12 01:18:00 +02:00
|
|
|
];
|
2009-11-08 01:32:12 +01:00
|
|
|
|
2011-05-04 14:22:56 +02:00
|
|
|
buildInputs =
|
|
|
|
[ zlib ]
|
|
|
|
++ stdenv.lib.optional gold [dejagnu flex2535 bison /* Some Gold tests require this: */ bc];
|
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
|
2009-11-08 01:32:12 +01: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).
|
|
|
|
for i in binutils/Makefile.in gas/Makefile.in ld/Makefile.in; do
|
2012-01-19 15:55:12 +01:00
|
|
|
set -i "$i" '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)
|
2011-10-25 20:52:32 +02:00
|
|
|
NIX_CFLAGS_COMPILE = "-static-libgcc";
|
2011-10-25 20:35:17 +02:00
|
|
|
|
My first attempt at getting cross compilers in nixpkgs.
My idea is to provide special stdenv expressions that will contain in the path
additional cross compilers. As most expressions for programs accept a stdenv parameter,
we could substitute this parameter with the special stdenv, which will have a
generic builder that attempts the usual "--target=..." and can additionally
have an env variable like "cross" with the target architecture set.
So, finally we could have additional expressions like this:
bashRealArm = makeOverridable (import ../shells/bash) {
inherit fetchurl bison;
stdenv = stdenvCross "armv5tel-unknown-linux-gnueabi";
};
Meanwhile it does not work - I still cannot get the cross-gcc to build.
I think it does not fill the previous expressions with a lot of noise, so I
think it may be a good path to follow.
I only touched some files of the current stdenv: gcc-4.3, kernel headers
2.6.28, glibc 2.9, ...
I tried to use the gcc-cross-wrapper, that may be very outdated. Maybe I will
update it, or update the gcc-wrapper expression to make it fit the cross tools,
but meanwhile I even cannot build gcc, so I have not tested the wrapper.
This new idea on cross compiling is not similar to that of the
nixpkgs/branches/cross-compilation, which mostly added bare new expressions for
anything to be cross compiled, if I understood it correctly.
I cared not to break anything of the usual stdenv in all this work.
svn path=/nixpkgs/branches/stdenv-updates/; revision=18343
2009-11-14 09:11:30 +01:00
|
|
|
configureFlags = "--disable-werror" # needed for dietlibc build
|
2010-12-13 00:35:16 +01:00
|
|
|
+ stdenv.lib.optionalString (stdenv.system == "mips64-linux")
|
|
|
|
" --enable-fix-loongson2f-nop"
|
2011-05-04 12:03:46 +02:00
|
|
|
+ stdenv.lib.optionalString (cross != null) " --target=${cross.config}"
|
2011-05-04 14:22:56 +02:00
|
|
|
+ stdenv.lib.optionalString gold " --enable-gold";
|
2007-04-28 01:30:07 +02:00
|
|
|
|
2011-12-14 15:31:56 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2007-04-28 01:30:07 +02:00
|
|
|
meta = {
|
2008-10-29 09:57:58 +01:00
|
|
|
description = "GNU Binutils, 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.
|
|
|
|
'';
|
|
|
|
|
2008-10-29 09:57:58 +01:00
|
|
|
homepage = http://www.gnu.org/software/binutils/;
|
|
|
|
|
|
|
|
license = "GPLv3+";
|
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. */
|
|
|
|
priority = "10";
|
|
|
|
};
|
2003-11-03 11:22:00 +01:00
|
|
|
}
|