runlttv: wrap long comment lines
[lttv.git] / trunk / lttv / runlttv
1 #!/bin/sh
2 # Released under the GPL
3 # pmf - 2008/07/31
4
5 # This script runs LTTV in place in the compile directory without need for
6 # installing it with make install.
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 #
14 # In order for icons to display correctly, it might be necessary to create a
15 # symlink:
16 # $ ln -s ./lttv/modules/gui/lttvwindow/pixmaps
17 # while in the same directory as this script.
18
19 RCFILE=".runlttvrc"
20
21 ARGS="-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
23 if [ -e "$RCFILE" ]; then
24 source "$RCFILE";
25 fi
26
27 if [ "$1" = "dbg" ]; then
28 LD_LIBRARY_PATH=ltt/.libs gdb --args lttv/lttv/.libs/lttv.real $ARGS $TRACEFILE
29 elif [ "$1" = "valgrind" ]; then
30 LD_LIBRARY_PATH=ltt/.libs valgrind lttv/lttv/.libs/lttv.real $ARGS $TRACEFILE
31 elif [ "$1" = "strace" ]; then
32 LD_LIBRARY_PATH=ltt/.libs strace lttv/lttv/.libs/lttv.real $ARGS $TRACEFILE
33 else
34 LD_LIBRARY_PATH=ltt/.libs lttv/lttv/.libs/lttv.real $ARGS $TRACEFILE
35 fi
This page took 0.029547 seconds and 4 git commands to generate.