2017-10-17 22:44:24 +02:00
|
|
|
{ stdenv
|
|
|
|
|
|
|
|
# Build time
|
2019-06-16 21:59:06 +02:00
|
|
|
, fetchurl, pkgconfig, perl, texinfo, setupDebugInfoDirs, buildPackages
|
2017-10-17 22:44:24 +02:00
|
|
|
|
|
|
|
# Run time
|
|
|
|
, ncurses, readline, gmp, mpfr, expat, zlib, dejagnu
|
2017-05-22 22:36:59 +02:00
|
|
|
|
2018-12-01 10:00:51 +01:00
|
|
|
, pythonSupport ? stdenv.hostPlatform == stdenv.buildPlatform && !stdenv.hostPlatform.isCygwin, python3 ? null
|
2015-11-26 13:00:36 +01:00
|
|
|
, guile ? null
|
2017-05-22 22:36:59 +02:00
|
|
|
|
2012-06-21 15:28:17 +02:00
|
|
|
}:
|
2007-02-22 17:07:51 +01:00
|
|
|
|
2009-12-02 21:54:40 +01:00
|
|
|
let
|
2017-05-22 22:36:59 +02:00
|
|
|
basename = "gdb-${version}";
|
2019-09-21 06:07:30 +02:00
|
|
|
version = "8.3.1";
|
2009-12-02 21:54:40 +01:00
|
|
|
in
|
2011-08-20 16:30:23 +02:00
|
|
|
|
2018-12-01 10:00:51 +01:00
|
|
|
assert pythonSupport -> python3 != null;
|
2011-11-19 19:28:10 +01:00
|
|
|
|
2007-11-16 18:30:34 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-05-22 22:36:59 +02:00
|
|
|
name =
|
2018-08-20 20:43:41 +02:00
|
|
|
stdenv.lib.optionalString (stdenv.targetPlatform != stdenv.hostPlatform)
|
|
|
|
(stdenv.targetPlatform.config + "-")
|
2017-05-22 22:36:59 +02:00
|
|
|
+ basename;
|
2008-09-03 15:12:23 +02:00
|
|
|
|
2012-06-21 15:28:17 +02:00
|
|
|
src = fetchurl {
|
2014-08-19 20:36:25 +02:00
|
|
|
url = "mirror://gnu/gdb/${basename}.tar.xz";
|
2019-09-21 06:07:30 +02:00
|
|
|
sha256 = "1i2pjwaafrlz7wqm40b4znr77ai32rjsxkpl2az38yyarpbv8m8y";
|
2012-06-21 15:28:17 +02:00
|
|
|
};
|
2008-09-03 15:12:23 +02:00
|
|
|
|
2019-06-10 05:56:08 +02:00
|
|
|
postPatch = if stdenv.isDarwin then ''
|
|
|
|
substituteInPlace gdb/darwin-nat.c \
|
|
|
|
--replace '#include "bfd/mach-o.h"' '#include "mach-o.h"'
|
|
|
|
'' else null;
|
|
|
|
|
2018-11-16 08:31:05 +01:00
|
|
|
patches = [
|
|
|
|
./debug-info-from-env.patch
|
|
|
|
] ++ stdenv.lib.optionals stdenv.isDarwin [
|
|
|
|
./darwin-target-match.patch
|
|
|
|
];
|
2017-07-28 13:51:27 +02:00
|
|
|
|
2018-08-28 23:17:54 +02:00
|
|
|
nativeBuildInputs = [ pkgconfig texinfo perl setupDebugInfoDirs ];
|
2011-08-20 16:30:23 +02:00
|
|
|
|
2017-05-22 22:36:59 +02:00
|
|
|
buildInputs = [ ncurses readline gmp mpfr expat zlib guile ]
|
2018-12-01 10:00:51 +01:00
|
|
|
++ stdenv.lib.optional pythonSupport python3
|
2010-09-05 17:19:07 +02:00
|
|
|
++ stdenv.lib.optional doCheck dejagnu;
|
2008-09-03 15:12:23 +02:00
|
|
|
|
2017-07-28 14:22:48 +02:00
|
|
|
propagatedNativeBuildInputs = [ setupDebugInfoDirs ];
|
|
|
|
|
2018-12-12 01:30:00 +01:00
|
|
|
depsBuildBuild = [ buildPackages.stdenv.cc ];
|
|
|
|
|
2012-06-21 15:28:17 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2016-10-12 23:18:23 +02:00
|
|
|
# darwin build fails with format hardening since v7.12
|
|
|
|
hardeningDisable = stdenv.lib.optionals stdenv.isDarwin [ "format" ];
|
|
|
|
|
2017-06-11 11:34:17 +02:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-format-nonliteral";
|
|
|
|
|
2017-06-23 23:45:27 +02:00
|
|
|
# TODO(@Ericson2314): Always pass "--target" and always prefix.
|
2018-08-20 20:43:41 +02:00
|
|
|
configurePlatforms = [ "build" "host" ] ++ stdenv.lib.optional (stdenv.targetPlatform != stdenv.hostPlatform) "target";
|
2017-06-23 23:45:27 +02:00
|
|
|
|
2017-05-22 22:36:59 +02:00
|
|
|
configureFlags = with stdenv.lib; [
|
2017-10-17 22:44:24 +02: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 11:35:04 +01:00
|
|
|
|
2009-10-28 23:25:50 +01:00
|
|
|
postInstall =
|
|
|
|
'' # Remove Info files already provided by Binutils and other packages.
|
2015-04-14 17:25:34 +02:00
|
|
|
rm -v $out/share/info/bfd.info
|
2009-10-28 23:25:50 +01:00
|
|
|
'';
|
2009-10-12 12:06:41 +02:00
|
|
|
|
2010-09-05 17:19:07 +02:00
|
|
|
# TODO: Investigate & fix the test failures.
|
|
|
|
doCheck = false;
|
|
|
|
|
2011-08-20 16:30:23 +02:00
|
|
|
meta = with stdenv.lib; {
|
2014-08-24 16:21:08 +02:00
|
|
|
description = "The GNU Project debugger";
|
2008-09-03 15:12:23 +02: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.
|
|
|
|
'';
|
|
|
|
|
2018-12-01 19:22:13 +01:00
|
|
|
homepage = https://www.gnu.org/software/gdb/;
|
2008-09-03 15:12:23 +02:00
|
|
|
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
2009-09-23 21:45:02 +02:00
|
|
|
|
2014-01-15 15:33:31 +01:00
|
|
|
platforms = with platforms; linux ++ cygwin ++ darwin;
|
2019-08-20 19:36:05 +02:00
|
|
|
maintainers = with maintainers; [ pierron globin ];
|
2007-02-22 17:07:51 +01:00
|
|
|
};
|
|
|
|
}
|