Created
August 8, 2013 15:06
-
-
Save hanji/6185421 to your computer and use it in GitHub Desktop.
build 64-bit version of gvim using msvc10 toolchain.
This file contains hidden or 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
::~msvc10-vim64.bat: build 64-bit version of gvim using msvc10 toolchain. | |
::~author: Ji Han | |
set PATH=C:\Perl64\bin;%PATH% | |
::~beginning of line~--do not insert blank lines or comments. | |
nmake -f Make_mvc.mak CPU=AMD64 GUI=yes OLE=yes IME=yes CSCOPE=yes ^ | |
WINVER=0x0500 NETBEANS=no DEFINES="-DFEAT_PROPORTIONAL_FONTS" ^ | |
LUA=C:\opt\lua DYNAMIC_LUA=yes LUA_VER=52 ^ | |
TCL=C:\Tcl85-x64 DYNAMIC_TCL=yes TCL_VER=85 TCL_VER_LONG=8.5 ^ | |
PERL=C:\Perl64 DYNAMIC_PERL=yes PERL_VER=516 ^ | |
PYTHON=C:\python27 DYNAMIC_PYTHON=yes PYTHON_VER=27 ^ | |
PYTHON3=C:\python33 DYNAMIC_PYTHON3=yes PYTHON3_VER=33 ^ | |
RUBY=C:\ruby-2.0.0-p195-x64-mswin64_100 DYNAMIC_RUBY=yes RUBY_VER=200 RUBY_VER_LONG=2.0.0 ^ | |
RUBY_PLATFORM=x64-mswin64_100 RUBY_INSTALL_NAME=x64-msvcrt-ruby200 | |
::~end of line~ | |
move /y >nul xxd\xxd.exe . | |
for %%e in ( dll exp lib res ) do ( move /y >nul gvimext\gvimext.%%e . ) | |
for %%f in ( gvim.exe gvimext.dll vimrun.exe xxd.exe install.exe uninstal.exe ) do ( move /y >nul %%f \vim-x64-msvc10\ ) | |
del /s /q *.obj |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment