Merge pull request #73606 from samueldr/fix/valgrind-cross
valgrind: Add perl as a native build input
This commit is contained in:
commit
898e981bda
|
@ -16,6 +16,9 @@ stdenv.mkDerivation rec {
|
||||||
# Perl is needed for `callgrind_{annotate,control}'.
|
# Perl is needed for `callgrind_{annotate,control}'.
|
||||||
buildInputs = [ gdb perl ] ++ stdenv.lib.optionals (stdenv.isDarwin) [ bootstrap_cmds xnu ];
|
buildInputs = [ gdb perl ] ++ stdenv.lib.optionals (stdenv.isDarwin) [ bootstrap_cmds xnu ];
|
||||||
|
|
||||||
|
# Perl is also a native build input.
|
||||||
|
nativeBuildInputs = [ perl ];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
separateDebugInfo = stdenv.isLinux;
|
separateDebugInfo = stdenv.isLinux;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue