diff options
Diffstat (limited to 'sp/src/devtools/bin')
| -rwxr-xr-x | sp/src/devtools/bin/vpc | 28 | ||||
| -rw-r--r-- | sp/src/devtools/bin/vpc.exe | bin | 0 -> 1129472 bytes | |||
| -rwxr-xr-x | sp/src/devtools/bin/vpc_linux | bin | 0 -> 1184893 bytes | |||
| -rwxr-xr-x | sp/src/devtools/bin/vpc_osx | bin | 0 -> 1102944 bytes | |||
| -rw-r--r-- | sp/src/devtools/bin/vpccrccheck.exe | bin | 0 -> 83296 bytes |
5 files changed, 28 insertions, 0 deletions
diff --git a/sp/src/devtools/bin/vpc b/sp/src/devtools/bin/vpc new file mode 100755 index 00000000..3874f82c --- /dev/null +++ b/sp/src/devtools/bin/vpc @@ -0,0 +1,28 @@ +#!/bin/bash + +OS=`uname` +SCRIPTPATH=`dirname $0` +FORCEARG="" + +case $OS in +"Darwin") + BINNAME=vpc_osx + ;; +"Linux") + BINNAME=vpc_linux + ;; +*) + echo "Couldn't find appropriate VPC binary, fix the script." + exit -1 + ;; +esac + + +if [ $OS == "Darwin" ]; then + $SCRIPTPATH/$BINNAME $@ +elif [ $OS == "Linux" ]; then + $SCRIPTPATH/$BINNAME $@ +else + echo "Couldn't find appropriate VPC binary, fix the script." + exit -1 +fi diff --git a/sp/src/devtools/bin/vpc.exe b/sp/src/devtools/bin/vpc.exe Binary files differnew file mode 100644 index 00000000..0c084858 --- /dev/null +++ b/sp/src/devtools/bin/vpc.exe diff --git a/sp/src/devtools/bin/vpc_linux b/sp/src/devtools/bin/vpc_linux Binary files differnew file mode 100755 index 00000000..31263d23 --- /dev/null +++ b/sp/src/devtools/bin/vpc_linux diff --git a/sp/src/devtools/bin/vpc_osx b/sp/src/devtools/bin/vpc_osx Binary files differnew file mode 100755 index 00000000..65058d46 --- /dev/null +++ b/sp/src/devtools/bin/vpc_osx diff --git a/sp/src/devtools/bin/vpccrccheck.exe b/sp/src/devtools/bin/vpccrccheck.exe Binary files differnew file mode 100644 index 00000000..5a151b00 --- /dev/null +++ b/sp/src/devtools/bin/vpccrccheck.exe |