blob: 2c4102624a27b4187d7a3bfbba6a52c19d81f2bb [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001INSTALLpc.txt - Installation of Vim on PC
2
3This file contains instructions for compiling Vim. If you already have an
4executable version of Vim, you don't need this.
5
Bram Moolenaar362e1a32006-03-06 23:29:24 +00006More information can be found here: (Very stale now.)
Bram Moolenaar071d4272004-06-13 20:20:40 +00007
Bram Moolenaar362e1a32006-03-06 23:29:24 +00008 http://mywebpage.netscape.com/sharppeople/vim/howto/
Bram Moolenaar071d4272004-06-13 20:20:40 +00009
10The file "feature.h" can be edited to match your preferences. You can skip
11this, then you will get the default behavior as is documented, which should
12be fine for most people.
13
Bram Moolenaar362e1a32006-03-06 23:29:24 +000014With the exception of the last two sections (Windows 3.1 and MS-DOS),
15this document assumes that you are building Vim for Win32
16(Windows NT/2000/XP/2003/Vista and Windows 95/98/Me)
17
Bram Moolenaar071d4272004-06-13 20:20:40 +000018
19Contents:
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000201. Microsoft Visual C++
212. Using MinGW
223. Cygwin
234. Borland
245. Cross compiling for Win32 from a Linux machine
256. Building with Python support
267. Building with MzScheme support
278. Windows 3.1
289. MS-DOS
29
30The currently preferred method is using the free Visual C++ Toolkit 2003.
Bram Moolenaar071d4272004-06-13 20:20:40 +000031
32
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000331. Microsoft Visual C++
34=======================
35
36Visual Studio
37-------------
38
Bram Moolenaar98385dc2008-06-20 14:52:32 +000039Building with Visual Studio (VS 98, VS .NET, VS .NET 2003, VS 2005, and VS 2008)
Bram Moolenaar362e1a32006-03-06 23:29:24 +000040is straightforward. (These instructions should also work for VS 4 and VS 5.)
41
42To build Vim from the command line with MSVC, use Make_mvc.mak.
43Visual Studio installed a batch file called vcvars32.bat, which you must
44run to set up paths for nmake and MSVC.
45
Bram Moolenaarc9b4b052006-04-30 18:54:39 +000046nmake -f Make_mvc.mak console Win32 SDK or Microsoft Visual C++
47nmake -f Make_mvc.mak GUI=yes GUI Microsoft Visual C++
48nmake -f Make_mvc.mak OLE=yes OLE Microsoft Visual C++
Bram Moolenaar362e1a32006-03-06 23:29:24 +000049nmake -f Make_mvc.mak PERL=C:\Perl PYTHON=C:\Python etc.
Bram Moolenaarc9b4b052006-04-30 18:54:39 +000050 Perl, Python, etc.
Bram Moolenaar362e1a32006-03-06 23:29:24 +000051
52Make_mvc.mak allows a Vim to be built with various different features and
53debug support. Debugging with MS Devstudio is provided by Make_dvc.mak.
54For a description of the use of Make_dvc.mak, look in Make_mvc.mak.
55
56For compiling Gvim with IME support on far-east Windows, add IME=yes
57to the parameters you pass to Make_mvc.mak.
58
59To build Vim from within the Visual Studio IDE, open the Make_ivc.mak project.
60(Note: Make_ivc.mak is not as rich as Make_mvc.mak, which allows for
61far more configuration.) Make_ivc.mak can also be built with nmake.
62
63nmake -f Make_ivc.mak CFG="Vim - Win32 Release gvim"
Bram Moolenaarc9b4b052006-04-30 18:54:39 +000064 GUI Microsoft Visual C++ 4.x or later
Bram Moolenaar362e1a32006-03-06 23:29:24 +000065nmake -f Make_ivc.mak CFG="Vim - Win32 Release gvim OLE"
Bram Moolenaarc9b4b052006-04-30 18:54:39 +000066 OLE Microsoft Visual C++ 4.x or later
Bram Moolenaar362e1a32006-03-06 23:29:24 +000067
68See the specific files for comments and options.
69
70These files have been supplied by George V. Reilly, Ben Singer, Ken Scott and
71Ron Aaron; they have been tested.
72
73
74Visual C++ Toolkit 2003
75-----------------------
76
77You can download the Microsoft Visual C++ Toolkit 2003 from
78 http://msdn.microsoft.com/visualc/vctoolkit2003/
79This contains the command-line tools (compiler, linker, CRT headers,
80and libraries) for Visual Studio .NET 2003, but not the Visual Studio IDE.
81To compile and debug Vim with the VC2003 Toolkit, you will also need
82|ms-platform-sdk|, |dotnet-1.1-redist|, |dotnet-1.1-sdk|,
83and |windbg-download|.
84
Bram Moolenaar0fde2902008-03-16 13:54:13 +000085It's easier to download Visual C++ 2008 Express Edition, |msvc-2008-express|,
86which is freely available in perpetuity.
Bram Moolenaar362e1a32006-03-06 23:29:24 +000087
88The free Code::Blocks IDE works with the VC2003 Toolkit, as described at
89 http://wiki.codeblocks.org/index.php?title=Integrating_Microsoft_Visual_Toolkit_2003_with_Code::Blocks_IDE
90(This site also takes you through configuring a number of other
91free C compilers for Win32.)
92
93To compile Vim using the VC2003 Toolkit and Make_mvc.mak, you must first
94execute the following commands in a cmd.exe window (the msvcsetup.bat batch
95file can be used):
Bram Moolenaarc9b4b052006-04-30 18:54:39 +000096
Bram Moolenaar362e1a32006-03-06 23:29:24 +000097 set PATH=%SystemRoot%\Microsoft.NET\Framework\v1.1.4322;%PATH%
98 call "%VCToolkitInstallDir%vcvars32.bat"
99 set MSVCVer=7.1
100 call "%ProgramFiles%\Microsoft Platform SDK\SetEnv.Cmd"
101 set LIB=%ProgramFiles%\Microsoft Visual Studio .NET 2003\Vc7\lib;%LIB%
102
103Now you can build Vim with Make_mvc.mak.
104
105
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000106Getting the Windows Platform SDK *ms-platform-sdk*
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000107
108You will also need a copy of the Windows Platform SDK from
109 http://www.microsoft.com/msdownload/platformsdk/sdkupdate/
110Specifically, you need the Windows Core SDK subset of the Platform SDK,
111which contains the Windows headers and libraries.
112
113
114Getting the .NET Framework 1.1 Runtime *dotnet-1.1-redist*
115
116You need the .NET Framework 1.1 Redistributable Package from
117 http://www.microsoft.com/downloads/details.aspx?familyid=262d25e3-f589-4842-8157-034d1e7cf3a3
118or from Windows Update:
119 http://windowsupdate.microsoft.com/
120This is needed to install |dotnet-1.1-sdk|. It also contains cvtres.exe,
121which is needed to link Vim.
122
123
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000124Getting the .NET Framework 1.1 SDK *dotnet-1.1-sdk*
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000125
126You need the .NET Framework 1.1 SDK from
127 http://www.microsoft.com/downloads/details.aspx?familyid=9b3a2ca6-3647-4070-9f41-a333c6b9181d
128This contains some additional libraries needed to compile Vim,
129such as msvcrt.lib. You must install |dotnet-1.1-redist| before
130installing the .NET 1.1 SDK.
131
132
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000133Getting the WinDbg debugger *windbg-download*
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000134
135The Debugging Tools for Windows can be downloaded from
136 http://www.microsoft.com/whdc/devtools/debugging/default.mspx
137This includes the WinDbg debugger, which you will want if you ever need
138to debug Vim itself. An earlier version of the Debugging Tools
139is also available through the Platform SDK, |ms-platform-sdk|.
140
141
Bram Moolenaar98385dc2008-06-20 14:52:32 +0000142Visual C++ 2005 Express Edition *msvc-2005-express*
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000143-------------------------------
144
Bram Moolenaarfc1421e2006-04-20 22:17:20 +0000145Visual C++ 2005 Express Edition can be downloaded for free from:
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000146 http://msdn.microsoft.com/vstudio/express/visualC/default.aspx
147This includes the IDE and the debugger. You will also need
148|ms-platform-sdk|. You can build Vim with Make_mvc.mak.
149
150Instructions for integrating the Platform SDK into VC Express:
151 http://msdn.microsoft.com/vstudio/express/visualc/usingpsdk/default.aspx
152
153
Bram Moolenaar0fde2902008-03-16 13:54:13 +0000154Visual C++ 2008 Express Edition *msvc-2008-express*
155-------------------------------
156
157Visual C++ 2008 Express Edition can be downloaded for free from:
158 http://msdn2.microsoft.com/en-us/express/default.aspx
159This includes the IDE and the debugger. You can build Vim with Make_mvc.mak.
160
161
Bram Moolenaar98385dc2008-06-20 14:52:32 +0000162Visual C++ 2008 Express Edition *msvc-2008-express*
163-------------------------------
164
165Visual C++ 2008 Express Edition can be downloaded for free from:
166 http://msdn2.microsoft.com/en-us/express/default.aspx
167This includes the IDE and the debugger. You can build Vim with Make_mvc.mak.
168
169
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001702. MinGW
171========
172
173(written by Ron Aaron: <ronaharon@yahoo.com>)
174
175This is about how to produce a Win32 binary of gvim with MinGW.
176
177First, you need to get the 'mingw32' compiler, which is free for the download
178at:
179
180 http://www.mingw.org/
181
182Once you have downloaded the compiler binaries, unpack them on your hard disk
183somewhere, and put them on your PATH. If you are on Win95/98 you can edit
184your AUTOEXEC.BAT file with a line like:
185
186 set PATH=C:\GCC-2.95.2\BIN;%PATH%
187
188or on NT/2000/XP, go to the Control Panel, (Performance and Maintenance),
189System, Advanced, and edit the environment from there.
190
191Test if gcc is on your path. From a CMD (or COMMAND on '95/98) window:
192
193 C:\> gcc --version
194 2.95.2
195
196 C:\> make --version
197 GNU Make version 3.77 (...etc...)
198
199Now you are ready to rock 'n' roll. Unpack the vim sources (look on
200www.vim.org for exactly which version of the vim files you need).
201
202Change directory to 'vim\src':
203
204 C:\> cd vim\src
205 C:\VIM\SRC>
206
207and you type:
208
209 make -f Make_ming.mak gvim.exe
210
211After churning for a while, you will end up with 'gvim.exe' in the 'vim\src'
212directory.
213
214You should not need to do *any* editing of any files to get vim compiled this
215way. If, for some reason, you want the console-mode-only version of vim (this
216is NOT recommended on Win32, especially on '95/'98!!!), you need only change
217the 'gvim.exe' to 'vim.exe' in the 'make' commands given above.
218
219If you are dismayed by how big the EXE is, I strongly recommend you get 'UPX'
220(also free!) and compress the file (typical compression is 50%). UPX can be
221found at
222 http://www.upx.org/
223
224ADDITION: NLS support with MinGW
225
226(by Eduardo F. Amatria <eferna1@platea.pntic.mec.es>)
227
228If you want National Language Support, read the file src/po/README_mingw.txt.
229You need to uncomment lines in Make_ming.mak to have NLS defined.
230
231
2323. Cygwin
233=========
234
235Use Make_cyg.mak with Cygwin's GCC. See
236 http://users.skynet.be/antoine.mechelynck/vim/compile.htm
237
238The Cygnus one many not fully work yet.
239With Cygnus gcc you can use the Unix Makefile instead (you need to get the
240Unix archive then). Then you get a Cygwin application (feels like Vim is
241runnin on Unix), while with Make_cyg.mak you get a Windows application (like
242with the other makefiles).
243
244
2454. Borland
246===========
247
248Use Make_bc5.mak with Borland C++ 5.x. See
249 http://users.skynet.be/antoine.mechelynck/vim/compile.htm
250
251
2525. Cross compiling for Win32 from a Linux machine
253=================================================
254
255[Update of 1) needs to be verified]
256
257If you like, you can compile the 'mingw' Win32 version from the comfort of
258your Linux (or other unix) box. To do this, you need to follow a few steps:
259 1) Install the mingw32 cross-compiler. See
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000260 http://www.libsdl.org/extras/win32/cross/README.txt
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000261 2) get the *unix* version of the vim sources
262 3) in 'Make_ming.mak', set 'CROSS' to '1' instead of '0'.
263 4) make -f Make_ming.mak gvim.exe
264
265Now you have created the Windows binary from your Linux box! Have fun...
266
267
2686. Building with Python support
269===============================
270
271(written by Ron Aaron: <ronaharon@yahoo.com>)
272
273This has been tested with the mingw32 compiler, and the ActiveState
274ActivePython:
275 http://www.ActiveState.com/Products/ActivePython/
276
277After installing the ActivePython, you will have to create a 'mingw32'
278'libpython20.a' to link with:
279 cd $PYTHON/libs
280 pexports python20.dll > python20.def
281 dlltool -d python20.def -l libpython20.a
282
283Once that is done, edit the 'Make_ming.mak' so the PYTHON variable points to
284the root of the Python installation (C:\Python20, for example). If you are
285cross-compiling on Linux with the mingw32 setup, you need to also convert all
286the 'Include' files to *unix* line-endings. This bash command will do it
287easily:
288 for fil in *.h ; do vim -e -c 'set ff=unix|w|q' $fil
289
290Now just do:
291 make -f Make_ming.mak gvim.exe
292
293and you will end up with a Python-enabled, Win32 version. Enjoy!
294
295
2967. Building with MzScheme support
297=================================
298
299(written by Sergey Khorev <sergey.khorev@gmail.com>)
300
301Vim with MzScheme (http://www.plt-scheme.org/software/mzscheme) support can
302be built with either MSVC, or MinGW, or Cygwin. Supported versions are 205 and
303above (including 299 and 30x series).
304
305The MSVC build is quite straightforward. Simply invoke (in one line)
306nmake -fMake_mvc.mak MZSCHEME=<Path-to-MzScheme>
307 [MZSCHEME_VER=<MzScheme-version>] [DYNAMIC_MZSCHEME=<yes or no>]
308where <MzScheme-version> is the last seven characters from MzScheme dll name
309(libmzschXXXXXXX.dll).
310If DYNAMIC_MZSCHEME=yes, resulting executable will not depend on MzScheme
311DLL's, but will load them in runtime on demand.
312
313Building dynamic MzScheme support on MinGW and Cygwin is similar. Take into
314account that <Path-to-MzScheme> should contain slashes rather than backslashes
315(e.g. d:/Develop/MzScheme)
316
317"Static" MzScheme support (Vim executable will depend on MzScheme DLLs
318explicitly) on MinGW and Cygwin requires additional step.
319
320libmzschXXXXXXX.dll and libmzgcXXXXXXX.dll should be copied from
321%WINDOWS%\System32 to other location (either build directory, some temporary
322dir or even MzScheme home).
323
324Pass that path as MZSCHEME_DLLS parameter for Make. E.g.,
325make -f Make_cyg.mak MZSCHEME=d:/Develop/MzScheme MZSCHEME_VER=209_000
326 MZSCHEME_DLLS=c:/Temp DYNAMIC_MZSCHEME=no
327
328After a successful build, these dlls can be freely removed, leaving them in
329%WINDOWS%\System32 only.
330
331
3328. Windows 3.1x
333===============
334
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000335make -f Make_w16.mak 16 bit, Borland C++ 5.0
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000336
337Warning: Be sure to use the right make.exe. It should be Borland make.
338
339You will almost certainly have to change the paths for libs and include files
340in the Makefile. Look for "D:\BC5" and "ctl3dv2". You will get a number of
341warnings which can be ignored ( _chmod, precompiled header files, and
342"possibly incorrect assignment").
343
344The makefile should also work for BC++ 4.0 and 4.5, but may need tweaking to
345remove unsupported compiler & liker options.
346
347For making the Win32s version, you need Microsoft Visual C++ 4.1 OR EARLIER.
348In MSVC 4.2 support for Win32s was dropped! Use this command:
349 nmake -f Make_mvc.mak GUI=yes
350
351
3529. MS-DOS
Bram Moolenaar071d4272004-06-13 20:20:40 +0000353=========
354
355Summary:
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000356ren Make_bc3.mak Makefile; make 16 bit, Borland C++ and Turbo C++
357ren Make_tcc.mak Makefile; make 16 bit, Turbo C
Bram Moolenaarc9b4b052006-04-30 18:54:39 +0000358make -f Make_djg.mak 32 bit, DJGPP 2.0
359make -f Make_bc5.mak 32 bit, Borland C++ 5.x (edit it to
360 define DOS)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000361
362Warning: Be sure to use the right make.exe. Microsoft C make doesn't work;
363Borland make only works with Make_bc3.mak, Make_bc5.mak and Make_tcc.mak;
364DJGPP/GNU make must be used for Make_djg.mak.
365
366The Borland C++ compiler has been used to generate the MS-DOS executable; it
367should work without problems. You will probably have to change the paths for
368LIBPATH and INCLUDEPATH in the start of the Makefile. You will get two
369warnings which can be ignored (one about _chmod and one about precompiled
370header files).
371
372The "spawno" library by Ralf Brown was used in order to free memory when Vim
373starts a shell or other external command. Only about 200 bytes are taken from
374conventional memory. When recompiling get the spawno library from Simtel,
375directory "msdos/c". It is called something like "spwno413.zip". Or follow
376the instructions in the Makefile to remove the library.
377
378The Turbo C Makefile has not been tested much lately. It is included for those
379that don't have C++. You may need to make a few changes to get it to work.
380
381DJGPP needs to be installed properly to compile Vim; you need a lot of things
382before it works. When your setup is OK, Vim should compile with just one
383warning (about an argument to signal()).
384
385Make_bc5.mak is for those that have Borland C++ 5.0 or later. At the top of
386the file, there are some variables you can change to make either a 32-bit
387Windows exe (GUI or console mode), or a 16-bit MS-DOS version.
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000388NOTE: multi-byte support is broken in the Borland libraries, not everything
389will work properly! Esp. handling multi-byte file names.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000390
Bram Moolenaar1cd871b2004-12-19 22:46:22 +0000391If you get all kinds of strange error messages when compiling, try adding
392changing the file format from "unix" to "dos".