Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/msvc05
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@gnome.org>2009-05-02 02:58:10 +0400
committerMiguel de Icaza <miguel@gnome.org>2009-05-02 02:58:10 +0400
commitde7d7320da096ef7a202f252888bb62679d9131b (patch)
treeac51c69ec452c223ddbe2f1fe4b1061f6016530a /msvc05
parentbf68bcf0754f17b9abe0c16f678b349c70822924 (diff)
Copy
svn path=/trunk/mono/; revision=133333
Diffstat (limited to 'msvc05')
-rwxr-xr-xmsvc05/runburg.bat23
1 files changed, 23 insertions, 0 deletions
diff --git a/msvc05/runburg.bat b/msvc05/runburg.bat
new file mode 100755
index 00000000000..d7abbcd0642
--- /dev/null
+++ b/msvc05/runburg.bat
@@ -0,0 +1,23 @@
+@echo off
+rem This runs Monoburg on the various x86 files when called on Visual Studio
+echo Running Monoburg on the inssel.brg files...
+cd ..\mono\mini
+set PATH=%PATH%;%MONO_DEPENDENCIES_PREFIX%\bin
+
+if "%2" == "Win32" goto x86
+if "%2" == "x64" goto x64
+goto error
+:x86
+echo Platform detected is x86...
+%1 -c 1 -p -e inssel.brg inssel-float.brg inssel-long32.brg inssel-x86.brg -d inssel.h -s inssel.c
+goto end
+:x64
+echo Platform detected is x64...
+%1 -c 1 -p -e inssel.brg inssel-float.brg inssel-long.brg inssel-amd64.brg -d inssel.h -s inssel.c
+goto end
+:error
+echo Error: unsupported platform
+exit /b 100
+:end
+echo done
+