diff options
author | Steve Hay <SteveHay@planit.com> | 2006-11-28 16:01:55 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2006-11-28 16:01:55 +0000 |
commit | a7d225ecf8799085a37ac5da254375f925b69d5f (patch) | |
tree | d9b4a0d692ea3d5dcfb8b2e91f4e153278c8bae5 /win32/makefile.mk | |
parent | aebaba0b5be8c1153dcfd9402824b0dc15298fe9 (diff) | |
download | perl-a7d225ecf8799085a37ac5da254375f925b69d5f.tar.gz |
Building with Visual C++ 2005 now works except for one test failure
p4raw-id: //depot/perl@29409
Diffstat (limited to 'win32/makefile.mk')
-rw-r--r-- | win32/makefile.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/win32/makefile.mk b/win32/makefile.mk index 160039819e..75975a0931 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -1,9 +1,9 @@ # # Makefile to build perl on Windows NT using DMAKE. # Supported compilers: -# Visual C++ 2.0 through 7.0 (and possibly newer versions) -# Borland C++ 5.02 or better -# MinGW with gcc-2.95.2 or better +# Visual C++ 2.0 or later +# Borland C++ 5.02 or later +# MinGW with gcc-2.95.2 or later # MS Platform SDK 64-bit compiler and tools **experimental** # # This is set up to build a perl.exe that runs off a shared library @@ -524,7 +524,7 @@ INCLUDES = -I$(COREDIR) -I.\include -I. -I.. DEFINES = -DWIN32 -D_CONSOLE -DNO_STRICT $(CRYPT_FLAG) LOCDEFS = -DPERLDLL -DPERL_CORE SUBSYS = console -CXX_FLAG = -TP -GX +CXX_FLAG = -TP -EHsc .IF "$(USE_PERLCRT)" != "define" LIBC = msvcrt.lib |