You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
439 B
17 lines
439 B
11 years ago
|
#!/bin/sh
|
||
|
JNA=/usr/share/java/jna.jar
|
||
|
|
||
|
if [ ! -f ${JNA} ]; then
|
||
|
echo "JNA @ ${JNA} does not exist, edit this file with the correct path";
|
||
|
exit
|
||
|
fi
|
||
|
|
||
|
case "$1" in
|
||
|
"") java -classpath ${JNA}:. Test ;;
|
||
|
"arm") java -classpath ${JNA}:. TestArm ;;
|
||
|
"arm64") java -classpath ${JNA}:. TestArm64 ;;
|
||
|
"mips") java -classpath ${JNA}:. TestMips ;;
|
||
|
"x86") java -classpath ${JNA}:. TestX86 ;;
|
||
|
* ) echo "Usage: ./run.sh [arm]"; exit 1;;
|
||
|
esac
|