xref: /Universal-ctags/docs/windows.rst (revision 5bac8ac2b8a1bc8326c7e3ac1689e02cd0b76c4b)
1Building/hacking/using on MS-Windows
2-----------------------------------------------------------------------------
3
4:Maintainer: Frank Fesevur <ffes@users.sourceforge.net>
5
6----
7
8This part of the documentation is written by Frank Fesevur, co-maintainer of Universal Ctags and the maintainer of the Windows port of this project. It is still very much a work in progress. Things still need to be written down, tested or even investigated. When building for Windows you should be aware that there are many compilers and build environments available. This is a summary of available options and things that have been tested so far.
9
10
11Compilers
12~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
13
14There are many compilers for Windows. Compilers not mentioned here may work but are not tested.
15
16
17Microsoft Visual Studio
18.............................................................................
19https://www.visualstudio.com/
20
21Obviously there is Microsoft Visual Studio 2013. Many professional developers targeting Windows use Visual Studio. Visual Studio comes in a couple of different editions. Their Express and Community editions are free to use, but a Microsoft-account is required to download the .iso and when you want to continue using it after a 30-days trial period. Other editions of Visual Studio must be purchased.
22
23Installing Visual Studio will give you the IDE, the command line compilers and the MS-version of make named nmake.
24
25Note that ctags cannot be built with Visual Studio older than 2013 anymore. There is C99 (or C11) coding used that generates syntax errors with VS2012 and older. This could affect compilers from other vendors as well.
26
27
28GCC
29.............................................................................
30
31You can use `MinGW-w64 <https://www.mingw-w64.org/>`_ to build ctags. There are several ways to install MinGW-w64 in Windows.
32
33- MSYS2 https://www.msys2.org/
34- MinGW-w64 - for 32 and 64 bit Windows https://sourceforge.net/projects/mingw-w64/
35- TDM-GCC https://jmeubank.github.io/tdm-gcc/
36
37If you want to build a full-featured version, use MSYS2 (with Autotools). Otherwise, you can also use the other two distributions.
38
39**History**
40
41MinGW started it all, but development stalled for a while and no x64 was available. Then the MinGW-w64 fork emerged. It started as a 64-bit compiler, but soon they included both a 32-bit and a 64-bit compiler. But the name remained, a bit confusing. MinGW-w64 appears to be the most used flavor of MinGW at this moment. Many well known programs that originate from GNU/Linux use MinGW-w64 to compile their Windows port.
42
43Building ctags from the command line
44~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
45
46Microsoft Visual Studio
47.............................................................................
48
49Most users of Visual Studio will use the IDE and not the command line to compile a project. But by default a shortcut to the command prompt that sets the proper path is installed in the Start Menu. When this command prompt is used ``nmake -f mk_mvc.mak`` will compile ctags. You can also go into the ``win32`` subdirectory and run ``msbuild ctags_vs2013.sln`` for the default build. Use ``msbuild ctags_vs2013.sln /p:Configuration=Release`` to specifically build a release build. MSBuild is what the IDE uses internally and therefore will produce the same files as the IDE.
50
51If you want to build an iconv enabled version, you must specify ``WITH_ICONV=yes`` and ``ICONV_DIR`` like below::
52
53        nmake -f mk_mvc.mak WITH_ICONV=yes ICONV_DIR=path/to/iconvlib
54
55If you want to build a debug version using ``mk_mvc.mak``, you must specify ``DEBUG=1`` like below::
56
57        nmake -f mk_mvc.mak DEBUG=1
58
59If you want to create PDB files for debugging even for a release version, you must specify ``PDB=1`` like below::
60
61        nmake -f mk_mvc.mak PDB=1
62
63GCC
64.............................................................................
65
66**General**
67
68All the GCC's come with installers or with zipped archives. Install or extract them in a directory without spaces.
69
70GNU Make builds for Win32 are available as well, and sometimes are included with the compilers. Make sure it is in your path, for instance by copying the make.exe in the bin directory of your compiler.
71
72Native win32 versions of the GNU/Linux commands cp, rm and mv can be useful. rm is almost always used in by the ``clean`` target of a makefile.
73
74
75**CMD**
76
77Any Windows includes a command prompt. Not the most advanced, but it is enough to do the build tasks. Make sure the path is set properly and ``make -f mk_mingw.mak`` should do the trick.
78
79If you want to build an iconv enabled version, you must specify ``WITH_ICONV=yes`` like below::
80
81        make -f mk_mingw.mak WITH_ICONV=yes
82
83If you want to build a debug version, you must specify ``DEBUG=1`` like below::
84
85        make -f mk_mingw.mak DEBUG=1
86
87**MSYS2**
88
89From mingw.org: MSYS is a collection of GNU utilities such as bash, make, gawk and grep to allow building of applications and programs which depend on traditional UNIX tools to be present. It is intended to supplement MinGW and the deficiencies of the cmd shell.
90
91MSYS2 is a more maintained version of MSYS, but specially geared towards MinGW-w64. You can also use Autotools to build ctags.
92If you use Autotools you can enable parsers which require jansson, libxml2 or libyaml, and can also do the Units testing with ``make units``.
93If you don't need such features, you can still build ctags without using Autotools: ``make -f mk_mingw.mak``.
94
95The following packages are needed to build a full-featured version:
96
97- base-devel (make, autoconf)
98- mingw-w64-{i686,x86_64}-toolchain (mingw-w64-{i686,x86_64}-gcc, mingw-w64-{i686,x86_64}-pkg-config)
99- mingw-w64-{i686,x86_64}-jansson
100- mingw-w64-{i686,x86_64}-libxml2
101- mingw-w64-{i686,x86_64}-libyaml
102- mingw-w64-{i686,x86_64}-xz
103
104If you want to build a single static-linked binary, you can use the following command:
105
106.. code-block:: bash
107
108        ./autogen.sh
109        ./configure --disable-external-sort --enable-static
110        make
111
112``--disable-external-sort`` is a recommended option for Windows builds.
113
114**Cygwin**
115
116Cygwin provides ports of many GNU/Linux tools and a POSIX API layer. This is the most complete way to get the GNU/Linux terminal feel under Windows. Cygwin has a setup that helps you install all the tools you need. One drawback of Cygwin is that it has poor performance.
117
118It is easy to build a Cygwin version of ctags using the normal GNU/Linux build steps. This ctags.exe will depend on cygwin1.dll and should only be used within the Cygwin ecosystem.
119
120The following packages are needed to build a full-featured version:
121
122- libiconv-devel
123- libjansson-devel
124- libxml2-devel
125- libyaml-devel
126
127Cygwin has packages with a recent version of MinGW-w64 as well. This way it is easy to cross-compile a native Windows application with ``make -f mk_mingw.mak  CC=i686-w64-mingw32-gcc``.
128
129You can also build a native Windows version using Autotools.
130
131.. code-block:: bash
132
133	./autogen.sh
134	./configure --host=i686-w64-mingw32 --disable-external-sort
135	make
136
137If you use Autotools you can also do the Units testing with ``make units``.
138
139Some anti-virus software slows down the build and test process significantly, especially when ``./configure`` is running and during the Units tests. In that case it could help to temporarily disable them. But be aware of the risks when you disable your anti-virus software.
140
141**Cross-compile from GNU/Linux**
142
143All major distributions have both MinGW and MinGW-w64 packages. Cross-compiling works the same way as with Cygwin. You cannot do the Windows based Units tests on GNU/Linux.
144
145
146Building ctags with IDEs
147~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
148
149I have no idea how things work for most GNU/Linux developers, but most Windows developers are used to IDEs. Not many use a command prompt and running the debugger from the command line is not a thing a Windows developers would normally do. Many IDEs exist for Windows, I use the two below.
150
151Microsoft Visual Studio
152.............................................................................
153
154As already mentioned Microsoft Visual Studio 2013 has the free Express and Community editions. For ctags the Windows Desktop Express Edition is enough to get the job done. The IDE has a proper debugger. Project files for VS2013 can be found in the win32 directory.
155
156Please know that when files are added to the sources.mak, these files need to be added to the .vcxproj and .vcxproj.filters files as well. The XML of these files should not be a problem.
157
158Code::Blocks
159.............................................................................
160http://www.codeblocks.org/
161
162Code::Blocks is a decent GPL-licensed IDE that has good gcc and gdb integration. The TDM-GCC that can be installed together with Code::Blocks works fine and I can provide a project file. This is an easy way to have a free - free as in beer as well as in speech - solution and to have the debugger within the GUI as well.
163
164
165Other differences between Microsoft Windows and GNU/Linux
166~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
167
168There other things where building ctags on Microsoft Windows differs from building on GNU/Linux.
169
170- Filenames on Windows file systems are case-preserving, but not case-sensitive.
171- Windows file systems use backslashes ``"\"`` as path separators, but paths with forward slashes ``"/"`` are no problem for a Windows program to recognize, even when a full path (include drive letter) is used.
172- The default line-ending on Windows is CRLF. A tags file generated by the Windows build of ctags will contain CRLF.
173- The tools used to build ctags do understand Unix-line endings without problems. There is no need to convert the line-ending of existing files in the repository.
174- Due to the differences between the GNU/Linux and Windows C runtime library there are some things that need to be added to ctags to make the program as powerful as it is on GNU/Linux. At this moment regex and fnmatch are borrowed from glibc. mkstemp() is taken from MinGW-w64's runtime library. scandir() is taken from `Pacemaker <https://github.com/ClusterLabs/pacemaker/blob/master/replace/scandir.c>`_.
175- Units testing needs a decent ``bash`` shell, some unix-like tools (e.g. ``diff``, ``sed``) and Python 3.5 or later. It is only tested using Cygwin or MSYS2.
176