Vim Tips Wiki
(Adjust previous/next navigation + minor manual clean)
Line 30: Line 30:
   
 
----
 
----
Use mwing32 -- gcc for windows. Builds native exe.
+
Use mingw32 -- gcc for windows. Builds native exe.
   
 
From http://www.mingw.org/
 
From http://www.mingw.org/

Revision as of 15:26, 15 March 2012

Tip 531 Printable Monobook Previous Next

created 2003 · complexity basic · author maxiangjiang · version 6.0


This tip is for those who are interested in building gvim.exe on Windows without using MSVC or BCC. The condition is that cygwin is installed.

Following are the three steps (under any shell and any directory).

cvs -z3 -d:pserver:anonymous@cvs.vim.org:/cvsroot/vim co vim
cd vim/src
make -f Make_cyg.mak IME=yes

I have tested under Windows 2000 and have used my own gvim.exe for months without any problem.

Comments

Dan Sharp has an end-to-end solution for almost all problems for Vim compiling on Windows: http://mywebpage.netscape.com/sharppeople/vim/howto/Vim-Compile-Win32-HOWTO/index.html


Use mingw32 -- gcc for windows. Builds native exe.

From http://www.mingw.org/

MinGW: A collection of freely available and freely distributable Windows specific header files and import libraries combined with GNU toolsets that allow one to produce native Windows programs that do not rely on any 3rd-party DLLs.


Note that the resulting gvim.exe built from cygwin package is "native". It has no dependancy on cygwin.dll at all.


The gvim.exe produced does not use cygwin-style paths. I've got a lot of cygwin mounts that I would like to use.

If you want a Vim which understands Cygwin-style paths and runs seamlessly from a Cygwin bash prompt, I recommend the Console Vim build that comes with Cygwin. You will still need a different executable such as the one described above (gvim.exe and/or vim.exe) to run in Windows outside the Cygwin "Unix-like" environment. --Tonymec 16:03, 21 August 2009 (UTC)