update test
[lttv.git] / trunk / lttv / runlttv
CommitLineData
94e22cd1 1#!/bin/sh
2# Released under the GPL
3# pmf - 2008/07/31
4
eb9ab977 5# This script runs LTTV in place in the compile directory without need for
6# installing it with make install.
94e22cd1 7#
8# The .runlttvrc file can be used to control its behavior.
9# - by setting the TRACEFILE variable, a trace can be automatically loaded
10# ex: TRACEFILE="-t /tmp/traces/dijkstra-20071212"
11# - by setting the ARGS variable, a different set of plugins can be loaded
12# for an example see the ARGS= line below
13#
eb9ab977 14# In order for icons to display correctly, it might be necessary to create a
15# symlink:
94e22cd1 16# $ ln -s ./lttv/modules/gui/lttvwindow/pixmaps
17# while in the same directory as this script.
18
19RCFILE=".runlttvrc"
20
21ARGS="-L lttv/modules/gui/controlflow/.libs -m guicontrolflow -L lttv/modules/gui/lttvwindow/lttvwindow/.libs -m lttvwindow -L lttv/modules/gui/detailedevents/.libs -m guievents -L lttv/modules/gui/tracecontrol/.libs -m guitracecontrol -L lttv/modules/gui/statistics/.libs -m guistatistics -L lttv/modules/gui/resourceview/.libs -m resourceview -L lttv/modules/gui/filter/.libs -m guifilter -L lttv/modules/gui/interrupts/.libs -m interrupts -L lttv/modules/gui/histogram/.libs -m guihistogram"
22
23if [ -e "$RCFILE" ]; then
24 source "$RCFILE";
25fi
26
27if [ "$1" = "dbg" ]; then
28 LD_LIBRARY_PATH=ltt/.libs gdb --args lttv/lttv/.libs/lttv.real $ARGS $TRACEFILE
29elif [ "$1" = "valgrind" ]; then
30 LD_LIBRARY_PATH=ltt/.libs valgrind lttv/lttv/.libs/lttv.real $ARGS $TRACEFILE
31elif [ "$1" = "strace" ]; then
32 LD_LIBRARY_PATH=ltt/.libs strace lttv/lttv/.libs/lttv.real $ARGS $TRACEFILE
33else
34 LD_LIBRARY_PATH=ltt/.libs lttv/lttv/.libs/lttv.real $ARGS $TRACEFILE
35fi
This page took 0.02318 seconds and 4 git commands to generate.