1 $Id: INSTALL.win32,v 1.23 2004/02/29 14:35:10 gbazin Exp $
3 INSTALL file for the Windows9x/Me/NT4/2k/XP version of the VLC media player
9 If you have already built VLC (see below) or are using a binary release,
12 You can also run VLC from a dos command box, in which case you'll be able
13 to use the command line arguments. You can obtain a list of these command
14 line arguments by typing 'vlc --help' or 'vlc --help --advanced'.
16 To store a debug log of the current VLC session, you can use
17 'vlc -vv --extraintf=logger'. You will end-up with a vlc-log.txt file in
18 your current directory.
20 Additional documentation is available at http://www.videolan.org/doc/
23 Building VLC from the source code
24 =================================
26 If you want to build VLC from sources, you can do it in several ways:
28 - natively on Windows, using cygwin (www.cygwin.com) with or without the
29 unix emulation layer. This is the prefered way to compile vlc if you want
31 NOTE: This is the PREFERED way of building VLC natively (the others
32 are not as much tested so expect more difficulties with them).
34 - natively on Windows, using MSYS+MINGW (www.mingw.org)
35 (MSYS is a minimal build environnement to compile unixish projects under
36 windoze. It provides all the common unix tools like sh, gmake...)
37 Please note that the gettext utilities are not included in the default
38 MSYS/MINGW packages so you won't be able to build VLC with i18n support.
40 - natively on Windows, using Microsoft Visual C++. Even though we provide some
41 msvc project files with vlc, this method is advised only if you just want to
42 experiment/play with some basic functionnalities in vlc. The reason for this
43 is that vlc depends on a lot of 3rd party libraries and building them in
44 MSVC is not convenient and sometimes even impossible.
45 ( NOTE: if you want to run vlc under the msvc debugger, you need to run it
46 with the --fast-mutex --win9x-cv-method=1 options because the debugger
47 usually loses signals sent by PulseEvent() )
49 - or on Linux, using the mingw32 cross-compiler.
51 Getting the right compiler tools
52 ================================
54 - cross-compiling with mingw32:
55 You first need to download a linux cross-compiler version of mingw32.
57 For Debian GNU/Linux users, you can use the mingw32, mingw32-binutils and
58 mingw32-runtime packages.
60 Or you can use our mingw32 gcc-3.3.1 cross-compiler package:
61 http://www.videolan.org/pub/testing/win32/mingw-gcc3.3.1-linux-crosscompiler.tar.bz2 (requires libc6 >= 2.3.2).
62 You will need to extract this package in your root directory (everything will
63 be extracted in /usr/local/cross-tools).
65 - compiling natively on Windoze with cygwin:
66 You will need to download and run the setup.exe app from cygwin's web site
67 (www.cygwin.com). You will also need to make sure you install at least the
68 gcc-g++, gcc-mingw, mingw-runtime and win32-api packages.
70 - compiling natively on Windoze with MSYS+MINGW:
71 You will need to download and install the latest MSYS, MSYS-DTK and MINGW.
72 The installation is really easy. Begin with the MSYS auto-installer and once
73 this is done, extract MINGW into c:\msys\1.0\mingw. You also have to remember
74 to remove the make utility included with MINGW as it conflicts with the one
75 from MSYS (just rename or remove c:\msys\1.0\mingw\bin\make.exe).
77 http://www.mingw.org/download.shtml
78 http://prdownloads.sf.net/mingw/MSYS-1.0.9.exe
79 http://prdownloads.sf.net/mingw/MinGW-3.0.0-rc3.exe
80 http://prdownloads.sf.net/mingw/msysDTK-1.0.1.exe
82 Getting the additionnal libraries
83 =================================
85 VLC depends on other libraries to provide some features like ac3 audio decoding
86 or mpeg4 video decoding, etc...
88 Depending on your needs you will have to compile/install some or all of these
91 They can be found here (source code):
92 http://download.videolan.org/pub/testing/contrib/
94 We also provide a package with all the libraries already compiled so it is
95 actually really easy to compile a full-featured version of vlc (these compiled
96 libraries will only work with mingw or cygwin):
97 http://download.videolan.org/pub/testing/win32/contrib-20040229-win32-bin-gcc3.3.1-only.tar.bz2
98 All you need to do is extract it in your root directory (the include files
99 and libraries will be put in /usr/win32). You can do this with the following
100 command: "tar xjvf contrib-20040229-win32-bin-gcc3.3.1-only.tar.bz2 -C /"
102 A complete list of the libraries on which we depend can be found here:
103 http://developers.videolan.org/vlc/
105 Configuring the build
106 =====================
108 Once you've got all the files you need in place, you need to configure the
109 build with the `./configure' script.
111 I'll assume that you are using the pre-compiled 3rd party libraries I'm
112 providing and that they are in /usr/win32.
114 If you are cross-compiling from Debian, you can use something
118 CPPFLAGS="-I/usr/win32/include -I/usr/win32/include/ebml" \
119 LDFLAGS=-L/usr/win32/lib \
120 CC=i586-mingw32msvc-gcc CXX=i586-mingw32msvc-g++ \
121 ./configure --host=i586-mingw32msvc --build=i386-linux \
122 --disable-sdl --disable-gtk \
124 --enable-ffmpeg --with-ffmpeg-mp3lame --with-ffmpeg-faac \
128 --with-wx-config-path=/usr/win32/bin \
129 --with-freetype-config-path=/usr/win32/bin \
130 --with-fribidi-config-path=/usr/win32/bin \
131 --enable-livedotcom --with-livedotcom-tree=/usr/win32/live.com \
132 --enable-caca --with-caca-config-path=/usr/win32/bin \
133 --with-xml2-config-path=/usr/win32/bin \
134 --with-dvdnav-config-path=/usr/win32/bin \
135 --disable-cddax --disable-vcdx \
138 If you are cross-compiling with our gcc-3.3.1 package, you can use something
142 PATH=/usr/local/mingw/bin:$PATH \
143 CPPFLAGS=-I/usr/win32/include \
144 LDFLAGS=-L/usr/win32/lib \
145 CC=i586-mingw32msvc-gcc CXX=i586-mingw32msvc-g++ \
146 ./configure --host=i586-mingw32msvc --build=i386-linux \
147 --disable-sdl --disable-gtk \
149 --enable-ffmpeg --with-ffmpeg-mp3lame --with-ffmpeg-faac \
153 --with-wx-config-path=/usr/win32/bin \
154 --with-freetype-config-path=/usr/win32/bin \
155 --with-fribidi-config-path=/usr/win32/bin \
156 --enable-livedotcom --with-livedotcom-tree=/usr/win32/live.com \
157 --enable-caca --with-caca-config-path=/usr/win32/bin \
158 --with-xml2-config-path=/usr/win32/bin \
159 --with-dvdnav-config-path=/usr/win32/bin \
160 --disable-cddax --disable-vcdx \
163 If you are using cygwin, you can build VLC with or without the unix emulation
164 layer (without is usually better). To build without the emulaion layer, use
167 CPPFLAGS="-I/usr/win32/include -I/usr/win32/include/ebml" \
168 LDFLAGS=-L/usr/win32/lib \
169 CC="gcc -mno-cygwin" CXX="g++ -mno-cygwin" \
171 --disable-sdl --disable-gtk \
173 --enable-ffmpeg --with-ffmpeg-mp3lame --with-ffmpeg-faac \
177 --with-wx-config-path=/usr/win32/bin \
178 --with-freetype-config-path=/usr/win32/bin \
179 --with-fribidi-config-path=/usr/win32/bin \
180 --enable-livedotcom --with-livedotcom-tree=/usr/win32/live.com \
181 --enable-caca --with-caca-config-path=/usr/win32/bin \
182 --with-xml2-config-path=/usr/win32/bin \
183 --with-dvdnav-config-path=/usr/win32/bin \
184 --disable-cddax --disable-vcdx \
187 If you want to use the emulation layer, then just omit the CC="gcc -mno-cygwin"
188 CXX="g++ -mno-cygwin" line.
190 If you are compiling with MSYS/MINGW, then you can use something along those
193 CPPFLAGS="-I/usr/win32/include -I/usr/win32/include/ebml" \
194 LDFLAGS=-L/usr/win32/lib \
196 --disable-sdl --disable-gtk \
198 --enable-ffmpeg --with-ffmpeg-mp3lame --with-ffmpeg-faac \
202 --with-wx-config-path=/usr/win32/bin \
203 --with-freetype-config-path=/usr/win32/bin \
204 --with-fribidi-config-path=/usr/win32/bin \
205 --enable-caca --with-caca-config-path=/usr/win32/bin \
206 --with-xml2-config-path=/usr/win32/bin \
207 --with-dvdnav-config-path=/usr/win32/bin \
208 --disable-cddax --disable-vcdx \
212 See `./configure --help' for more information.
214 Actually Compiling the VLC source
215 =================================
217 Once configured, to build VLC, just run `make'.
219 ( If you are using our gcc-3.3.1 cross-compiler you'll need to use:
220 PATH=/usr/local/mingw/bin:$PATH make )
222 Well done, now you're ready to use VLC!
223 =======================================