If you read this file _as_is_, just ignore the funny characters you see. It is written in the POD format (see pod/perlpod.pod) which is specially designed to be readable as is. =head1 NAME perlwin32 - Perl under Win32 =head1 SYNOPSIS These are instructions for building Perl under WindowsNT (versions 3.51 or 4.0), using Visual C++ (versions 2.0 through 5.0). Currently, this port may also build under Windows95, but you can expect problems stemming from the unmentionable command shell that infests that platform. Note this caveat is only about B perl. Once built, you should be able to B it on either Win32 platform (modulo the problems arising from the inferior command shell). =head1 DESCRIPTION Before you start, you should glance through the README file found in the top-level directory where the Perl distribution was extracted. Make sure you read and understand the terms under which this software is being distributed. Also make sure you read the L section below for the known limitations of this port. The INSTALL file in the perl top-level has much information that is only relevant to people building Perl on Unix-like systems. In particular, you can safely ignore any information that talks about "Configure". You should probably also read the README.os2 file, which gives a different set of rules to build a Perl that will work on Win32 platforms. That method will probably enable you to build a more Unix-compatible perl, but you will also need to download and use various other support software described in that file. This set of instructions is meant to describe a so-called "native" port of Perl to Win32 platforms. The resulting Perl requires no additional software to run (other than what came with your operating system). Currently, this port is only capable of using Microsoft's Visual C++ compiler. The ultimate goal is to support the other major compilers that can be used to build Win32 applications. This port currently supports MakeMaker (the set of modules that is used to build extensions to perl). Therefore, you should be able to build and install most extensions found in the CPAN sites. =head2 Setting Up =over 4 =item * Use the default "cmd" shell that comes with NT. In particular, do *not* use the 4DOS/NT shell. The Makefile has commands that are not compatible with that shell. You are mostly on your own if you can muster the temerity to attempt this with Windows95. =item * Run the VCVARS32.BAT file usually found somewhere like C:\MSDEV4.2\BIN. This will set your build environment. =item * Depending on how you extracted the distribution, you have to make sure all the files are writable by you. The easiest way to make sure of this is to execute: attrib -R *.* /S from the perl toplevel directory. You don't I to do this if you used the right tools to extract the files in the standard distribution, but it doesn't hurt to do so. =back =head2 Building =over 4 =item * Make sure you are in the "win32" subdirectory under the perl toplevel. This directory contains a "Makefile" that will work with versions of NMAKE that come with Visual C++ ver. 2.0 and above. =item * Edit the Makefile and change the values of INST_DRV and INST_TOP if you want perl to be installed in a location other than "C:\PERL". =item * If you are using Visual C++ ver. 4.0 and above: type "nmake". If you are using a Visual C++ ver. 2.0: type "nmake CCTYPE=MSVC20". This should build everything. Specifically, it will create perl.exe, perl.dll, and perlglob.exe at the perl toplevel, and various other extension dll's under the lib\auto directory. If the make fails for any reason, make sure you have done the previous steps correctly. =back =head2 Testing Type "nmake test". This will run most of the tests from the testsuite (many tests will be skipped, and but no test should fail). If some tests do fail, it may be because you are using a different command shell than the native "cmd.exe". Please report any failures as described under L. =head2 Installation Type "nmake install". This will put the newly built perl and the libraries under "C:\PERL" (actually whatever you set INST_TOP to in the Makefile). To use the Perl you just installed, set your PATH environment variable to "C:\PERL\BIN" (or $(INST_TOP)\BIN, if you changed the default as above). =head1 BUGS AND CAVEATS This is still very much an experimental port, and should be considered alpha quality software. You can expect changes in virtually all of these areas: build process, installation structure, supported utilities/modules, and supported perl functionality. Specifically, functionality specific to the Win32 environment may ultimately be supported as either core modules or extensions. If you have had prior exposure to Perl on Unix platforms, you will notice this port exhibits behavior different from what is documented. Most of the differences fall under one of these categories. =over 8 =item * C and C functions may not behave as documented. They may return values that bear no resemblance to those reported on Unix platforms, and some fields may be completely bogus. =item * The following functions are currently unavailable: C, C, C, C, C, C, C, C, C, C, C, C, C, C. This list is possibly very incomplete. =item * Various C related calls are supported, but they may not behave as on Unix platforms. =item * The four-argument C call is only supported on sockets. =item * The behavior of C or the C operator (a.k.a. "backticks"), when used to call interactive commands, is ill-defined. =item * C<$?> ends up with the exitstatus of the subprocess (this is different from Unix, where the exitstatus is actually given by "$? >> 8"). Failure to spawn() the subprocess is indicated by setting $? to "255<<8". This is subject to change. =item * Building modules available on CPAN is mostly supported, but this hasn't been tested much yet. Expect strange problems, and be prepared to deal with the consequences. =item * C, C and process-related functions may not behave as described in the documentation, and some of the returned values or effects may be bogus. =item * Signal handling may not behave as on Unix platforms. =item * File globbing may not behave as on Unix platforms. =item * Not all of the utilities that come with the Perl distribution are supported yet. =back Please send detailed descriptions of any problems and solutions that you may find to >, along with the output produced by C. =head1 AUTHORS =over 4 =item Gary Ng > =item Gurusamy Sarathy > =item Nick Ing-Simmons > =back =head1 SEE ALSO L =head1 HISTORY This port was originally contributed by Gary Ng around 5.003_24, and borrowed from the Hip Communications port that was available at the time. Nick Ing-Simmons and Gurusamy Sarathy have made numerous and sundry hacks since then. Last updated: 13 April 1997 =cut