summaryrefslogtreecommitdiff
path: root/win32/configure.bat
diff options
context:
space:
mode:
Diffstat (limited to 'win32/configure.bat')
-rwxr-xr-xwin32/configure.bat12
1 files changed, 12 insertions, 0 deletions
diff --git a/win32/configure.bat b/win32/configure.bat
index 09de87a1a5..fa8966e0c9 100755
--- a/win32/configure.bat
+++ b/win32/configure.bat
@@ -36,6 +36,8 @@ if "%1" == "--enable-debug-env" goto :enable-debug-env
if "%1" == "--disable-debug-env" goto :disable-debug-env
if "%1" == "--enable-rubygems" goto :enable-rubygems
if "%1" == "--disable-rubygems" goto :disable-rubygems
+if "%1" == "--enable-mjit-support" goto :enable-mjit-support
+if "%1" == "--disable-mjit-support" goto :disable-mjit-support
if "%1" == "--extout" goto :extout
if "%1" == "--path" goto :path
if "%1" == "--with-baseruby" goto :baseruby
@@ -152,6 +154,16 @@ goto :loop ;
echo>>confargs.tmp %1 \
shift
goto :loop ;
+:enable-mjit-support
+ echo>> ~tmp~.mak "MJIT_SUPPORT=yes" \
+ echo>>confargs.tmp %1 \
+ shift
+goto :loop ;
+:disable-mjit-support
+ echo>> ~tmp~.mak "MJIT_SUPPORT=no" \
+ echo>>confargs.tmp %1 \
+ shift
+goto :loop ;
:ntver
echo>> ~tmp~.mak "NTVER=%~2" \
echo>>confargs.tmp %1=%2 \