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 | |
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')
-rw-r--r-- | win32/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/Makefile b/win32/Makefile index 5c6209aacd..6399b57950 100644 --- a/win32/Makefile +++ b/win32/Makefile @@ -1,7 +1,7 @@ # # Makefile to build perl on Windows NT using Microsoft NMAKE. # Supported compilers: -# Visual C++ 2.0 through 7.0 (and possibly newer versions) +# Visual C++ 2.0 or later # MS Platform SDK 64-bit compiler and tools # # This is set up to build a perl.exe that runs off a shared library @@ -413,7 +413,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 |