for some reason, colorschemes don't seem to work well...
Last active
May 18, 2016 17:05
-
-
Save raghur/1f77cd97bdc1bed0c6a43ab2fbbb8e05 to your computer and use it in GitHub Desktop.
Compiling vim with mingw
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
| cd vim/src | |
| make -f Make_ming.mak CC=x86_64-w64-mingw32-gcc ARCH=x86-64 -j6 PYTHON=/d/sdks/python2/ PYTHON3=/d/sdks/python3 PYTHON3_VER=35 LUA=/d/sdks/LuaJIT-2.0.4/src/ LUAINC=/d/sdks/LuaJIT-2.0.4/src / LUA_VER=51 DIRECTX=yes | |
| # if you need console vim, add GUI=no to the line above. |
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
| # list of files to copy over to some folder. | |
| $ find | |
| . | |
| ./gvim.exe | |
| ./lua | |
| ./lua/jit | |
| ./lua/jit/bc.lua | |
| ./lua/jit/bcsave.lua | |
| ./lua/jit/dis_arm.lua | |
| ./lua/jit/dis_mips.lua | |
| ./lua/jit/dis_mipsel.lua | |
| ./lua/jit/dis_ppc.lua | |
| ./lua/jit/dis_x64.lua | |
| ./lua/jit/dis_x86.lua | |
| ./lua/jit/dump.lua | |
| ./lua/jit/v.lua | |
| ./lua/jit/vmdef.lua | |
| ./lua51.dll | |
| ./luajit.exe | |
| ./python35.dll |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment