/usr/bin/perl6-valgrind-m is in rakudo 2015.11-2build1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 | #!/bin/sh
/usr/bin/moar --execname="$0" --libpath="/usr/share/nqp/lib" --libpath="/usr/share/perl6/lib" --libpath="/usr/share/perl6/runtime" --libpath="/usr/lib/perl6/runtime" --libpath="/usr/lib/perl6/runtime/dynext" /usr/share/perl6/runtime/perl6.moarvm -e '
say "=" x 96;
say "This is Rakudo Perl 6 running in valgrind, a tool for debugging and profiling programs.\nRunning a program in valgrind usually takes *a lot* more time than running it directly,\nso please be patient.";
say "This Rakudo version is $*PERL.compiler.version() built on MoarVM version $*VM.version(),";
say "running on $*DISTRO.gist() / $*KERNEL.gist()";
say "-" x 96;'
valgrind /usr/bin/moar --execname="$0" --libpath="/usr/share/nqp/lib" --libpath="/usr/share/perl6/lib" --libpath="/usr/share/perl6/runtime" --libpath="/usr/lib/perl6/runtime" --libpath="/usr/lib/perl6/runtime/dynext" /usr/share/perl6/runtime/perl6.moarvm "$@"
|