2019-06-16 20:59:06 +01:00
|
|
|
{ stdenv, fetchurl, perl, gdb, cctools, xnu, bootstrap_cmds }:
|
2004-01-21 14:50:18 +00:00
|
|
|
|
2013-12-03 14:17:01 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-07-07 23:32:44 +01:00
|
|
|
name = "valgrind-3.16.1";
|
2008-06-03 21:56:12 +01:00
|
|
|
|
2004-01-21 14:50:18 +00:00
|
|
|
src = fetchurl {
|
2017-08-21 19:34:03 +01:00
|
|
|
url = "https://sourceware.org/pub/valgrind/${name}.tar.bz2";
|
2020-07-07 23:32:44 +01:00
|
|
|
sha256 = "1jik19rcd34ip8a5c9nv5wfj8k8maqb8cyclr4xhznq2gcpkl7y9";
|
2004-01-21 14:50:18 +00:00
|
|
|
};
|
2006-10-11 17:45:55 +01:00
|
|
|
|
2016-10-25 15:22:00 +01:00
|
|
|
outputs = [ "out" "dev" "man" "doc" ];
|
2015-08-27 15:46:30 +01:00
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "stackprotector" ];
|
2016-02-09 01:20:59 +00:00
|
|
|
|
2008-06-03 21:56:12 +01:00
|
|
|
# GDB is needed to provide a sane default for `--db-command'.
|
2019-08-27 07:56:54 +01:00
|
|
|
# Perl is needed for `callgrind_{annotate,control}'.
|
|
|
|
buildInputs = [ gdb perl ] ++ stdenv.lib.optionals (stdenv.isDarwin) [ bootstrap_cmds xnu ];
|
2008-06-03 21:56:12 +01:00
|
|
|
|
2019-11-18 03:29:44 +00:00
|
|
|
# Perl is also a native build input.
|
|
|
|
nativeBuildInputs = [ perl ];
|
|
|
|
|
2013-12-03 14:17:01 +00:00
|
|
|
enableParallelBuilding = true;
|
2018-09-24 21:57:38 +01:00
|
|
|
separateDebugInfo = stdenv.isLinux;
|
2013-12-03 14:17:01 +00:00
|
|
|
|
2017-09-11 23:53:30 +01:00
|
|
|
preConfigure = stdenv.lib.optionalString stdenv.isDarwin (
|
|
|
|
let OSRELEASE = ''
|
|
|
|
$(awk -F '"' '/#define OSRELEASE/{ print $2 }' \
|
|
|
|
<${xnu}/Library/Frameworks/Kernel.framework/Headers/libkern/version.h)'';
|
|
|
|
in ''
|
|
|
|
echo "Don't derive our xnu version using uname -r."
|
|
|
|
substituteInPlace configure --replace "uname -r" "echo ${OSRELEASE}"
|
2017-03-02 14:19:45 +00:00
|
|
|
|
2018-12-14 08:54:41 +00:00
|
|
|
# Apple's GCC doesn't recognize `-arch' (as of version 4.2.1, build 5666).
|
2013-12-03 14:17:01 +00:00
|
|
|
echo "getting rid of the \`-arch' GCC option..."
|
|
|
|
find -name Makefile\* -exec \
|
|
|
|
sed -i {} -e's/DARWIN\(.*\)-arch [^ ]\+/DARWIN\1/g' \;
|
|
|
|
|
|
|
|
sed -i coregrind/link_tool_exe_darwin.in \
|
|
|
|
-e 's/^my \$archstr = .*/my $archstr = "x86_64";/g'
|
2017-03-02 14:19:45 +00:00
|
|
|
|
|
|
|
substituteInPlace coregrind/m_debuginfo/readmacho.c \
|
2019-03-04 00:55:51 +00:00
|
|
|
--replace /usr/bin/dsymutil ${stdenv.cc.bintools.bintools}/bin/dsymutil
|
2017-03-02 14:19:45 +00:00
|
|
|
|
|
|
|
echo "substitute hardcoded /usr/bin/ld with ${cctools}/bin/ld"
|
|
|
|
substituteInPlace coregrind/link_tool_exe_darwin.in \
|
|
|
|
--replace /usr/bin/ld ${cctools}/bin/ld
|
2018-12-14 08:54:41 +00:00
|
|
|
'');
|
|
|
|
|
|
|
|
# To prevent rebuild on linux when moving darwin's postPatch fixes to preConfigure
|
|
|
|
postPatch = "";
|
2013-12-03 14:17:01 +00:00
|
|
|
|
2007-02-27 10:40:15 +00:00
|
|
|
configureFlags =
|
2020-08-05 18:03:10 +01:00
|
|
|
stdenv.lib.optional (stdenv.hostPlatform.system == "x86_64-linux" || stdenv.hostPlatform.system == "x86_64-darwin") "--enable-only64bit"
|
|
|
|
++ stdenv.lib.optional stdenv.hostPlatform.isDarwin "--with-xcodedir=${xnu}/include";
|
2007-02-27 10:40:15 +00:00
|
|
|
|
2018-04-25 04:20:18 +01:00
|
|
|
doCheck = false; # fails
|
|
|
|
|
2008-08-19 14:03:08 +01:00
|
|
|
postInstall = ''
|
|
|
|
for i in $out/lib/valgrind/*.supp; do
|
|
|
|
substituteInPlace $i \
|
|
|
|
--replace 'obj:/lib' 'obj:*/lib' \
|
|
|
|
--replace 'obj:/usr/X11R6/lib' 'obj:*/lib' \
|
|
|
|
--replace 'obj:/usr/lib' 'obj:*/lib'
|
|
|
|
done
|
|
|
|
'';
|
|
|
|
|
2006-10-11 17:45:55 +01:00
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.valgrind.org/";
|
2014-08-24 15:21:08 +01:00
|
|
|
description = "Debugging and profiling tool suite";
|
2008-06-03 21:56:12 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
Valgrind is an award-winning instrumentation framework for
|
|
|
|
building dynamic analysis tools. There are Valgrind tools that
|
|
|
|
can automatically detect many memory management and threading
|
|
|
|
bugs, and profile your programs in detail. You can also use
|
|
|
|
Valgrind to build new tools.
|
|
|
|
'';
|
|
|
|
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2009-09-23 20:45:02 +01:00
|
|
|
|
2013-12-03 14:17:01 +00:00
|
|
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
2017-03-02 14:19:45 +00:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2019-05-03 02:28:10 +01:00
|
|
|
badPlatforms = [
|
|
|
|
"armv5tel-linux" "armv6l-linux" "armv6m-linux"
|
|
|
|
"sparc-linux" "sparc64-linux"
|
|
|
|
"riscv32-linux" "riscv64-linux"
|
|
|
|
"alpha-linux"
|
|
|
|
];
|
2020-10-23 05:10:02 +01:00
|
|
|
broken = stdenv.isDarwin; # https://hydra.nixos.org/build/128521440/nixlog/2
|
2006-10-11 17:45:55 +01:00
|
|
|
};
|
2004-01-21 14:50:18 +00:00
|
|
|
}
|