repo.or.cz
/
gumsense-br.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Default gumstix configuration changed
[gumsense-br.git]
/
package
/
valgrind
/
valgrind.sh
blob
4b8eb2e57b62e9d32ceadd6146bb9f3d660c4b13
1
#!/bin/sh -e
2
#
3
# Valgrind wrapper
4
5
# Use special suppression file for uClibc
6
export
VALGRIND_OPTS
=
"
$VALGRIND_OPTS
--suppressions=/usr/lib/valgrind/uclibc.supp"
7
8
# Use 'exec' to avoid having another shell process hanging around.
9
exec
$0
.bin
"$@"
10