--- coregrind/link_tool_exe_openbsd.in.orig	Fri Sep 27 10:40:06 2019
+++ coregrind/link_tool_exe_openbsd.in	Fri Sep 27 10:45:59 2019
@@ -77,7 +77,12 @@
 my $origbase = 0x400000;
 system(sprintf "sed -e 's|%x|%x|g' < $ldscript > $temp", $origbase, $notebase);
 
-my $cmd = sprintf "$cc -static -nopie -Wl,-Ttext=0x%x -Wl,-T,$temp", $textbase;
+my $cmd = sprintf "$cc -static -nopie -Wl,--strip-all -Wl,-zwxneeded -Wl,-Ttext=0x%x -Wl,-T,$temp", $textbase;
+# XXX The '-s' option was not specified when executing the install command.
+# Instead '--strip-all' is now executed at link time.
+# strip command rewrite offset and align in ELF file. Therefor, when valgrind
+# launch memcheck-amd64-openbsd, an Abort trap occurs in the execvp() system
+# call.
 
 # Add the rest of the parameters
 foreach my $n (2 .. $#ARGV) {
