Created
March 2, 2011 15:02
-
-
Save 573/851051 to your computer and use it in GitHub Desktop.
Custom adaptions to the batch file from http://vim.wikia.com/wiki/Build_Python-enabled_Vim_on_Windows_with_MinGW
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- vim73_compile_diffs\enable_python26\build_vim_original.bat 2011-03-01 14:49:28 +0000 | |
+++ vim73_compile_diffs\enable_python26\build_vim.bat 2011-03-01 15:13:56 +0000 | |
@@ -1,8 +1,8 @@ | |
@echo off | |
REM ------- specify Vim /src folder ---------------- | |
-set VIMSRC=E:\devel\vim73\src | |
+set VIMSRC=E:\temp\vim\vim73\src | |
REM ------- add MinGW /bin directory to PATH ------- | |
-PATH = %PATH%;E:\MinGW\bin; | |
+PATH = %PATH%;H:\MinGW\bin;H:\PortablePython_1.1_py2.6.1\App | |
REM get location of this batch file | |
set WORKINGDIR=%~dp0 | |
@@ -15,12 +15,12 @@ | |
cd /D %VIMSRC% | |
REM build GUI version (gvim.exe) | |
-mingw32-make.exe -f Make_ming.mak PYTHON="C:/Python" PYTHON_VER=26 DYNAMIC_PYTHON=yes NETBEANS=no FEATURES=BIG GUI=yes gvim.exe > "%LOGFILE%" | |
+mingw32-make.exe -f Make_ming.mak PYTHON="H:/PortablePython_1.1_py2.6.1/App" PYTHON_VER=26 DYNAMIC_PYTHON=yes NETBEANS=no FEATURES=BIG GUI=yes gvim.exe > "%LOGFILE%" | |
move gvim.exe "%WORKINGDIR%" | |
REM build console version (vim.exe) | |
-mingw32-make.exe -f Make_ming.mak PYTHON="C:/Python" PYTHON_VER=26 DYNAMIC_PYTHON=yes NETBEANS=no FEATURES=BIG GUI=no vim.exe >> "%LOGFILE%" | |
+mingw32-make.exe -f Make_ming.mak PYTHON="H:/PortablePython_1.1_py2.6.1/App" PYTHON_VER=26 DYNAMIC_PYTHON=yes NETBEANS=no FEATURES=BIG GUI=no vim.exe >> "%LOGFILE%" | |
move vim.exe "%WORKINGDIR%" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment