aboutsummaryrefslogtreecommitdiff
path: root/mp/src/devtools/bin
diff options
context:
space:
mode:
Diffstat (limited to 'mp/src/devtools/bin')
-rw-r--r--mp/src/devtools/bin/vpc28
-rw-r--r--mp/src/devtools/bin/vpc.exebin0 -> 1129472 bytes
-rw-r--r--mp/src/devtools/bin/vpc_linuxbin0 -> 1184763 bytes
-rw-r--r--mp/src/devtools/bin/vpc_osxbin0 -> 1101960 bytes
-rw-r--r--mp/src/devtools/bin/vpccrccheck.exebin0 -> 83296 bytes
5 files changed, 28 insertions, 0 deletions
diff --git a/mp/src/devtools/bin/vpc b/mp/src/devtools/bin/vpc
new file mode 100644
index 00000000..2992aed4
--- /dev/null
+++ b/mp/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/mp/src/devtools/bin/vpc.exe b/mp/src/devtools/bin/vpc.exe
new file mode 100644
index 00000000..0c084858
--- /dev/null
+++ b/mp/src/devtools/bin/vpc.exe
Binary files differ
diff --git a/mp/src/devtools/bin/vpc_linux b/mp/src/devtools/bin/vpc_linux
new file mode 100644
index 00000000..11419d99
--- /dev/null
+++ b/mp/src/devtools/bin/vpc_linux
Binary files differ
diff --git a/mp/src/devtools/bin/vpc_osx b/mp/src/devtools/bin/vpc_osx
new file mode 100644
index 00000000..9506079b
--- /dev/null
+++ b/mp/src/devtools/bin/vpc_osx
Binary files differ
diff --git a/mp/src/devtools/bin/vpccrccheck.exe b/mp/src/devtools/bin/vpccrccheck.exe
new file mode 100644
index 00000000..5a151b00
--- /dev/null
+++ b/mp/src/devtools/bin/vpccrccheck.exe
Binary files differ