mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 18:13:01 +00:00
12 lines
271 B
Bash
Executable File
12 lines
271 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This ensures it works when invoked from any directory.
|
|
d=`dirname $0`
|
|
|
|
# We set both VALGRIND_LIB and VALGRIND_LIB_INNER to handle normal and
|
|
# 'inner' builds.
|
|
VALGRIND_LIB=$d/.in_place \
|
|
VALGRIND_LIB_INNER=$d/.in_place \
|
|
$d/coregrind/valgrind "$@"
|
|
|