tagged release 0.6.4
[parrot.git] / README_win32.pod
blob351ca35d733f8b7dc5ef4bcabf60f743138eaaf4
1 # $Id$
3 This file is best viewed with "perldoc README.win32".
5 =head1 NAME
7 README.win32 - Parrot under Windows
9 =head1 SYNOPSIS
11 These are instructions for building the "native" port of Parrot under
12 Windows 2000/XP on the Intel x86 architecture.
14 =head1 DESCRIPTION
16 Win32 "native" ports require no additional software to run but the
17 operating system.  There should be other READMEs for (emulation)
18 systems that run on Win32, eg Cygwin.
20 Native compilers include:
22        Borland C++ (bcc)                version xxx or later
23        Microsoft Visual C++ (cl)        version 13.10.3077 or later
24        MinGW32 with GCC (gcc)           version 3.4.2 or later
25        Intel C++ (icl)                  version 8.0.48 works
27 =head2 Setting Up Parrot
29 =over
31 =item Make
33 You need "nmake" to build Parrot under Windows with Microsoft compilers.  It
34 should be available via Microsoft Visual Studio .NET 2003 or the Microsoft .NET
35 Framework SDK 1.1.  Download the latter from the Microsoft .NET Framework
36 Homepage L<http://msdn.microsoft.com/netframework/>.
38 Note: Parrot will not build using nmake v1.5 from the MS web site.  Download
39 one of the above toolkits to obtain a later version, either v7 or v8.
41 MinGW works with its GNU "make" (v 3.81) port and its name is
42 'mingw32-make.exe'.  If you also have the Minimal SYStem (MSYS) installed,
43 you will need to remove the Msys/bin folder from your PATH environment
44 variable before calling "perl Configure.pl" and mingw32-make.  Perl detects
45 and calls /bin/sh.exe, if found, whenever shelling a new process.  sh.exe
46 causes problems for mingw32-make.exe because of its inability to handle
47 Windows pathnames with backslashes.  You must run "perl Configure.pl" and
48 mingw32-make from a dosbox; running those commands from an MSYS shell window
49 will experience the same backslash path problems.
51 =item Command Shell
53 The surest way to build it is on Windows NT/2000/XP, using the cmd shell.
55 =item ICU
57 Parrot no longer comes with its own ICU, thus you need to install it on your
58 system if you want to use it.  Note that ICU is now optional, you can
59 build Parrot without it, by not installing it or asking Parrot to
60 ignore it (C<--without-icu>).
62 If you want to use ICU, download it from
63 L<http://www.icu-project.org/download/>.
65 If you want to use precompiled binaries, do the following.
66 Download the package matching your compiler, unpack it (say, into
67 C:\usr\lib), add the F<bin> directory to C<PATH>, and tell
68 Configure.pl to use it.
70     mkdir C:\usr\lib
71     unzip icu4c-3_8_1-Win32-msvc8.zip -d C:\usr\lib
72     mkdir C:\usr\lib\data
73     set PATH=%PATH%;C:\usr\lib\icu\bin
74     cd <parrot directory>
75     perl Configure.pl
76         --icushared="C:\usr\lib\icu\lib\icudt.lib C:\usr\lib\icu\lib\icuuc.lib"
77         --icuheaders="C:\usr\lib\icu\include"
79 Note the step of creating the F<C:\usr\lib\data> directory, as Parrot
80 really wants it and the binary packages don't contain it.  It doesn't
81 need to contain anything though, as the data is pulled in from
82 F<lib/icudt.lib>, which contains the standard data in binary form.
84 =item Optional libraries
86 The availability of these libraries is checked by Configure.pl.
88 B<libcrypto> - a part of libssl
89 L<http://www.openssl.org/>
91 B<gettext> - library and tools for native language support
92 L<http://gnuwin32.sourceforge.net/>
94 B<gdbm> - GNU database manager
95 L<http://gnuwin32.sourceforge.net/>
97 B<GMP> - GNU multiple precision arithmetic library
98 L<http://developer.berlios.de/projects/win32gmp/>
100 B<pcre> - Perl-Compatible Regular Expression library
101 L<http://gnuwin32.sourceforge.net/>
103 B<readline> - edit command lines
104 L<http://gnuwin32.sourceforge.net/>
106 =item Optional utilities
108 The availability of these utilities is checked by Configure.pl
109 or by some test.
111 B<antlr> - ANother Tool for Language Recognition
112 L<http://www.antlr.org/>
114 B<m4> - macro language processor
115 L<http://gnuwin32.sourceforge.net/>
117 B<SVN::Client> - Perl wrapper of Subversion client functions
118 L<http://subversion.tigris.org/> (svn-win32-1.4.x_pl.zip)
120 =item Inno Setup
122 Inno Setup is a I<free> installer for Windows programs.
124 The latest release of Inno Setup at the time of writing is 5.2.3.
126 The HomePage is on L<http://www.jrsoftware.org/>.
128 Add the directory to PATH.
130     set PATH=%PATH%;C:\Program Files\Inno Setup 5
132 =item Borland C++
136 =item Microsoft Visual C++
138 Since mid April 2004, Visual C++ comes in two flavors.  Microsoft
139 Visual Studio .NET 2003 (L<http://msdn.microsoft.com/visualc/>), which
140 includes the full blown IDE, and Microsoft Visual C++ Toolkit 2003
141 (L<http://msdn.microsoft.com/visualc/vctoolkit2003/>), which is a free
142 (but unsupported) package, containing only the basic compiler and
143 linker stuff.
145 If you use the Toolkit, be sure to follow the directions for setting up
146 your build environment that come with the perl distributions. (README.win32
147 in the latest perl distribution.) You may have to substitute "Microsoft
148 Platform SDK" wherever "Microsoft SDK" is listed, depending on the your
149 install. You can ignore the entries regarding "win32/config.vc", but be sure
150 to create the "link.bat" batch file. Copy the missing files mentioned,
151 run the Toolkit Command Prompt, set the appropriate env vars, and you
152 should be fine. (For env vars, you can update them under My Computer->
153 properties so they are available whenever you open a shell.)
155 Note: It is possible to use ActiveState Perl with the Toolkit: you don't
156 have to compile your own perl.
158 =item Strawberry Perl
160 With the Strawberry perl distro from
161 L<http://strawberryperl.com/>, gcc is included. To build parrot,
162 use the strawberry perl binary to run Configure.pl, and then
163 follow the directions.
165 =item MinGW32 with GCC
167 The latest release of MinGW package at the time of writing is 5.1.3,
168 which contains gcc-3.4.5 as current release.
169 It can be downloaded here:
170 L<http://downloads.sourceforge.net/mingw/MinGW-5.1.3.exe>
172 The HomePage is on L<http://www.mingw.org/>.
174 With the ActiveState Perl distribution, tell Configure.pl to use gcc :
176     perl Configure.pl
177          --cc=gcc
178          --icushared="C:\usr\lib\icu\lib\icudt.lib C:\usr\lib\icu\lib\icuuc.lib"
179          --icuheaders="C:\usr\lib\icu\include"
181     perl Configure.pl --cc=gcc --without-icu
183 =item Intel C++
187 =back
189 =head2 Building
191     $MAKE
193 =head2 Testing
195     $MAKE test
197 =head2 Installation
199     $MAKE install
201 =head2 Installer
203     $MAKE win32-inno-installer
205 This command creates a setup-parrot-x.y.z.exe that contains all parrot install
206 directories.
208 =head2 Usage Hints
210     XXX
212 =head1 BUGS AND CAVEATS
214 =over
216 =item Features
218 Threads, Events, and Signals are missing.
220 =back
222 =head1 ACKNOWLEDGEMENTS
226 =head1 AUTHORS
228 =over
230 =item Ron Blaschke E<lt>ron@rblasch.orgE<gt>
232 =item François Perrad  E<lt>francois.perrad@gadz.orgE<gt>
234 =back
236 This document is maintained by The Parrot Developers
237 (E<lt>parrot-porters@perl.orgE<gt>).
239 =head1 SEE ALSO
241     L<parrot>
243 =head1 HISTORY
245 This document borrows heavily from Perl's README.win32.
247 GCC/mingw32 support was added in 0.1.2 (François Perrad).
249 Last updated: 17 April 2008
251 =cut