da8365b76242e49ebceba85344dad25aa9045fd7
[lttng-ust.git] / doc / examples / java-jul / run
1 #!/bin/bash
2
3 #
4 # The -cp path should be changed to the lttng ust JUL jar file on your system
5 # or locally to the project. Same goes for the Java library path in order to
6 # find the JNI JUL library.
7 #
8
9 DIR=`dirname $0`
10 JARFILE="liblttng-ust-jul.jar"
11
12 cd $DIR
13
14 if [ -f "$DIR/.intree" ]; then
15 CLASSPATH="../../../liblttng-ust-jul/$JARFILE"
16 LIBPATH="../../../liblttng-ust-jul/.libs"
17 else
18 CLASSPATH="/usr/local/lib/lttng/java/$JARFILE:/usr/lib/lttng/java/$JARFILE"
19 LIBPATH="/usr/local/lib:/usr/lib"
20 fi
21
22 java -cp "$CLASSPATH:." -Djava.library.path="$LIBPATH" Hello
23
24 cd -
This page took 0.028854 seconds and 3 git commands to generate.