From: Jan Dubois Date: Wed, 2 Dec 2009 07:03:09 +0000 (-0800) Subject: Add another hint about setting WIN64=undef to build a 32-bit Perl. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b86e806e0fdabf765203585cee6697bc3e14be6f;p=p5sagit%2Fp5-mst-13.2.git Add another hint about setting WIN64=undef to build a 32-bit Perl. Of course anyone who read README.win32 already knew this. :) --- diff --git a/win32/Makefile b/win32/Makefile index 6a63d23..bf1722a 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -24,6 +24,11 @@ INST_DRV = c: INST_TOP = $(INST_DRV)\perl # +# Uncomment if you want to build a 32-bit Perl using a 32-bit compiler +# on a 64-bit version of Windows. +#WIN64 = undef + +# # Comment this out if you DON'T want your perl installation to be versioned. # This means that the new installation will overwrite any files from the # old installation at the same INST_TOP location. Leaving it enabled is diff --git a/win32/makefile.mk b/win32/makefile.mk index 7eb5fc3..0f057a8 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -26,6 +26,11 @@ INST_DRV *= c: INST_TOP *= $(INST_DRV)\perl # +# Uncomment if you want to build a 32-bit Perl using a 32-bit compiler +# on a 64-bit version of Windows. +#WIN64 *= undef + +# # Comment this out if you DON'T want your perl installation to be versioned. # This means that the new installation will overwrite any files from the # old installation at the same INST_TOP location. Leaving it enabled is