diff options
author | Steve Hay <SteveHay@planit.com> | 2004-06-03 16:46:17 +0100 |
---|---|---|
committer | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2004-06-03 15:19:52 +0000 |
commit | e2736246f9096d0e04a2974deaf51d6950e0ac3f (patch) | |
tree | 628749b8f553d22542b9e57ecceb7537d3647b44 /win32 | |
parent | 3e666715a4bd2866748a6181c6b5ebb7e441f6b1 (diff) | |
download | perl-e2736246f9096d0e04a2974deaf51d6950e0ac3f.tar.gz |
Have win32/makefile.mk default to gcc, and update docs
Message-ID: <40BF39B9.3060207@uk.radan.com>
p4raw-id: //depot/perl@22901
Diffstat (limited to 'win32')
-rw-r--r-- | win32/makefile.mk | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/win32/makefile.mk b/win32/makefile.mk index fd702a91a5..c43a881bc5 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -89,14 +89,11 @@ USE_LARGE_FILES *= define # Visual C++ > 2.x and < 6.x #CCTYPE *= MSVC # Visual C++ >= 6.x -CCTYPE *= MSVC60 +#CCTYPE *= MSVC60 # Borland 5.02 or later #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 +# MinGW with gcc-2.95.2 or later +CCTYPE *= GCC # # uncomment this if your Borland compiler is older than v5.4. @@ -379,9 +376,6 @@ LINK_FLAGS += -L"$(CCLIBDIR)\Release" CC = gcc LINK32 = g++ -.IF "$(USE_GCC_V3_2)" == "define" -LINK32 = g++ -.END LIB32 = ar rc IMPLIB = dlltool RSC = windres |