diff options
author | Alain Barbet <alian@cpan.org> | 2002-10-18 17:29:29 +0200 |
---|---|---|
committer | hv <hv@crypt.org> | 2002-10-22 15:52:40 +0000 |
commit | 7c5b6093a3ac5e0bd09cdb0d2f391fecc26ce08d (patch) | |
tree | 2f2090455a41ffff9d35f8672046b8e90bf9c420 /win32/makefile.mk | |
parent | 9b488eb89e353c3569ec0fe5076be8c2a5f47436 (diff) | |
download | perl-7c5b6093a3ac5e0bd09cdb0d2f391fecc26ce08d.tar.gz |
Re: Smoke 18027 FAIL(F) MSWin32 5.0 Win2000Pro (MSWin32-x86)
Message-ID: <3DB00CB9.70708@alianwebserver.com>
p4raw-id: //depot/perl@18046
Diffstat (limited to 'win32/makefile.mk')
-rw-r--r-- | win32/makefile.mk | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/win32/makefile.mk b/win32/makefile.mk index 59d20072b8..dcc69809d6 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -34,7 +34,7 @@ INST_TOP *= $(INST_DRV)\perl # versioned installation can be obtained by setting INST_TOP above to a # path that includes an arbitrary version string. # -INST_VER *= \5.8.0 +INST_VER *= \5.9.0 # # Comment this out if you DON'T want your perl installation to have @@ -88,6 +88,9 @@ CCTYPE *= MSVC60 #CCTYPE *= BORLAND # mingw32+gcc-2.95.2 or better #CCTYPE *= GCC +# Uncomment this if you are using the latest MinGW release (2.0.0) +# with gcc3.2 +#USE_GCC_V3_2 *= define # # uncomment this if your Borland compiler is older than v5.4. @@ -369,6 +372,9 @@ LINK_FLAGS += -L"$(CCLIBDIR)\Release" CC = gcc LINK32 = gcc +.IF "$(USE_GCC_V3_2)" == "define" +LINK32 = g++ +.END LIB32 = ar rc IMPLIB = dlltool RSC = rc |