2017-10-17 21:44:24 +01:00
|
|
|
{ stdenv
|
|
|
|
|
|
|
|
# Build time
|
|
|
|
, fetchurl, pkgconfig, perl, texinfo, setupDebugInfoDirs
|
|
|
|
|
|
|
|
# Run time
|
|
|
|
, ncurses, readline, gmp, mpfr, expat, zlib, dejagnu
|
2017-05-22 21:36:59 +01:00
|
|
|
|
|
|
|
, buildPlatform, hostPlatform, targetPlatform
|
|
|
|
|
|
|
|
, pythonSupport ? hostPlatform == buildPlatform && !hostPlatform.isCygwin, python ? null
|
2015-11-26 12:00:36 +00:00
|
|
|
, guile ? null
|
2017-05-22 21:36:59 +01:00
|
|
|
|
2012-06-21 14:28:17 +01:00
|
|
|
}:
|
2007-02-22 16:07:51 +00:00
|
|
|
|
2009-12-02 20:54:40 +00:00
|
|
|
let
|
2017-05-22 21:36:59 +01:00
|
|
|
basename = "gdb-${version}";
|
2018-08-06 19:09:03 +01:00
|
|
|
version = "8.1.1";
|
2009-12-02 20:54:40 +00:00
|
|
|
in
|
2011-08-20 15:30:23 +01:00
|
|
|
|
2017-05-22 21:36:59 +01:00
|
|
|
assert pythonSupport -> python != null;
|
2011-11-19 18:28:10 +00:00
|
|
|
|
2007-11-16 17:30:34 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2017-05-22 21:36:59 +01:00
|
|
|
name =
|
|
|
|
stdenv.lib.optionalString (targetPlatform != hostPlatform)
|
|
|
|
(targetPlatform.config + "-")
|
|
|
|
+ basename;
|
2008-09-03 14:12:23 +01:00
|
|
|
|
2012-06-21 14:28:17 +01:00
|
|
|
src = fetchurl {
|
2014-08-19 19:36:25 +01:00
|
|
|
url = "mirror://gnu/gdb/${basename}.tar.xz";
|
2018-08-06 19:09:03 +01:00
|
|
|
sha256 = "0g6hv9xk12aa58w77fydaldqr9a6b0a6bnwsq87jfc6lkcbc7p4p";
|
2012-06-21 14:28:17 +01:00
|
|
|
};
|
2008-09-03 14:12:23 +01:00
|
|
|
|
2018-03-06 14:18:10 +00:00
|
|
|
patches = [ ./debug-info-from-env.patch ]
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin ./darwin-target-match.patch;
|
2017-07-28 12:51:27 +01:00
|
|
|
|
2018-08-28 22:17:54 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig texinfo perl setupDebugInfoDirs ];
|
2011-08-20 15:30:23 +01:00
|
|
|
|
2017-05-22 21:36:59 +01:00
|
|
|
buildInputs = [ ncurses readline gmp mpfr expat zlib guile ]
|
|
|
|
++ stdenv.lib.optional pythonSupport python
|
2010-09-05 16:19:07 +01:00
|
|
|
++ stdenv.lib.optional doCheck dejagnu;
|
2008-09-03 14:12:23 +01:00
|
|
|
|
2017-07-28 13:22:48 +01:00
|
|
|
propagatedNativeBuildInputs = [ setupDebugInfoDirs ];
|
|
|
|
|
2012-06-21 14:28:17 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-10-12 22:18:23 +01:00
|
|
|
# darwin build fails with format hardening since v7.12
|
|
|
|
hardeningDisable = stdenv.lib.optionals stdenv.isDarwin [ "format" ];
|
|
|
|
|
2017-06-11 10:34:17 +01:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-format-nonliteral";
|
|
|
|
|
2017-06-23 22:45:27 +01:00
|
|
|
# TODO(@Ericson2314): Always pass "--target" and always prefix.
|
|
|
|
configurePlatforms = [ "build" "host" ] ++ stdenv.lib.optional (targetPlatform != hostPlatform) "target";
|
|
|
|
|
2017-05-22 21:36:59 +01:00
|
|
|
configureFlags = with stdenv.lib; [
|
2017-10-17 21:44:24 +01:00
|
|
|
"--enable-targets=all" "--enable-64-bit-bfd"
|
|
|
|
"--disable-install-libbfd"
|
|
|
|
"--disable-shared" "--enable-static"
|
|
|
|
"--with-system-zlib"
|
|
|
|
"--with-system-readline"
|
|
|
|
|
|
|
|
"--with-gmp=${gmp.dev}"
|
|
|
|
"--with-mpfr=${mpfr.dev}"
|
|
|
|
"--with-expat" "--with-libexpat-prefix=${expat.dev}"
|
|
|
|
] ++ stdenv.lib.optional (!pythonSupport) "--without-python";
|
2010-12-04 10:35:04 +00:00
|
|
|
|
2009-10-28 22:25:50 +00:00
|
|
|
postInstall =
|
|
|
|
'' # Remove Info files already provided by Binutils and other packages.
|
2015-04-14 16:25:34 +01:00
|
|
|
rm -v $out/share/info/bfd.info
|
2009-10-28 22:25:50 +00:00
|
|
|
'';
|
2009-10-12 11:06:41 +01:00
|
|
|
|
2010-09-05 16:19:07 +01:00
|
|
|
# TODO: Investigate & fix the test failures.
|
|
|
|
doCheck = false;
|
|
|
|
|
2011-08-20 15:30:23 +01:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "The GNU Project debugger";
|
2008-09-03 14:12:23 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
GDB, the GNU Project debugger, allows you to see what is going
|
|
|
|
on `inside' another program while it executes -- or what another
|
|
|
|
program was doing at the moment it crashed.
|
|
|
|
'';
|
|
|
|
|
|
|
|
homepage = http://www.gnu.org/software/gdb/;
|
|
|
|
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2009-09-23 20:45:02 +01:00
|
|
|
|
2014-01-15 14:33:31 +00:00
|
|
|
platforms = with platforms; linux ++ cygwin ++ darwin;
|
2013-08-16 22:44:33 +01:00
|
|
|
maintainers = with maintainers; [ pierron ];
|
2007-02-22 16:07:51 +00:00
|
|
|
};
|
|
|
|
}
|