Update ar* start-scripts `--novst` option was removed with wineVST

This commit is contained in:
Robin Gareus 2021-09-08 23:28:50 +02:00
parent 746f7220b1
commit b3cb7d6136
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
4 changed files with 4 additions and 4 deletions

View File

@ -9,4 +9,4 @@ export ARDOUR_RUNNING_UNDER_VALGRIND=TRUE
exec valgrind --tool=helgrind \
--error-limit=no --num-callers=50 \
$HELGRIND_OPTIONS \
$TOP/$EXECUTABLE --novst "$@"
$TOP/$EXECUTABLE "$@"

View File

@ -7,7 +7,7 @@ TOP=`dirname "$0"`/..
export ARDOUR_RUNNING_UNDER_VALGRIND=TRUE
exec valgrind --tool=massif \
$MASSIF_OPTIONS \
$TOP/$EXECUTABLE --novst "$@"
$TOP/$EXECUTABLE "$@"
# analyse output with
# ms_print massif.out.<PID>

View File

@ -29,4 +29,4 @@ exec valgrind --tool=callgrind \
--collect-systime=yes --collect-bus=yes \
--callgrind-out-file=/tmp/ardour_profile/ardour-%p.log \
--toggle-collect="ARDOUR::AudioEngine::process_callback*" \
$TOP/$EXECUTABLE --novst "$@"
$TOP/$EXECUTABLE "$@"

View File

@ -17,4 +17,4 @@ exec valgrind --tool=memcheck \
--track-origins=yes \
--suppressions=${TOP}/tools/valgrind.supp \
$OBJSUPP \
$TOP/$EXECUTABLE --novst "$@"
$TOP/$EXECUTABLE "$@"