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
diff options
context:
space:
mode:
authorJonathan Chambers <joncham@gmail.com>2007-03-15 21:38:12 +0300
committerJonathan Chambers <joncham@gmail.com>2007-03-15 21:38:12 +0300
commite66dac6f3f265c261876bc011157c6392ae5d8a1 (patch)
tree1fc2683c12d34773ef5f82d8848179a07aba539e /msvc/runburg.bat
parent6556fbb87f821b66cd0d2bf4a9c8f59df359dff2 (diff)
2007-03-15 Jonathan Chambers <joncham@gmail.com>
Revert previous patch. svn path=/trunk/mono/; revision=74411
Diffstat (limited to 'msvc/runburg.bat')
-rwxr-xr-xmsvc/runburg.bat17
1 files changed, 1 insertions, 16 deletions
diff --git a/msvc/runburg.bat b/msvc/runburg.bat
index 8370b0ac7ef..7e36428b99a 100755
--- a/msvc/runburg.bat
+++ b/msvc/runburg.bat
@@ -1,23 +1,8 @@
@echo off
rem This runs Monoburg on the various x86 files when called on Visual Studio
-echo Running Monoburg on the inssel.brg files...
+echo Running Monoburg on the x86 inssel.brg files...
cd ..\mono\mini
set PATH=%PATH%;..\..\VSDependancies\lib
-
-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