diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2000-12-06 19:28:21 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2000-12-06 19:28:21 +0000 |
commit | 8c8a4ace7996843229b7a1f2a007f1cea5c7a38d (patch) | |
tree | 45a4b2a6c9317c111f0ed49c371538baf87d63a7 /win32/makefile.mk | |
parent | e4a4387cd67b57d9dfcb057f769a33143eec0663 (diff) | |
download | perl-8c8a4ace7996843229b7a1f2a007f1cea5c7a38d.tar.gz |
Add useperlio to config.vc
Turn off binmode in config_H.PL
Regen all the config_H.xx
Attempt to get debugging build with MSVC.
p4raw-id: //depot/perlio@8019
Diffstat (limited to 'win32/makefile.mk')
-rw-r--r-- | win32/makefile.mk | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/win32/makefile.mk b/win32/makefile.mk index 97b580cb2b..c4a1398b1c 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -95,11 +95,11 @@ USE_IMP_SYS *= 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 +#CCTYPE *= GCC # # uncomment this if you are compiling under Windows 95/98 and command.com @@ -292,10 +292,13 @@ ARCHNAME !:= $(ARCHNAME)-thread # run in about 10% less time. DELAYLOAD *= -DELAYLOAD:wsock32.dll -DELAYLOAD:shell32.dll delayimp.lib +.IF "$(CFG)" == "Debug" +.ELSE # VC 6.0 seems capable of compiling perl correctly with optimizations # enabled. Anything earlier fails tests. CFG *= Optimize .ENDIF +.ENDIF ARCHDIR = ..\lib\$(ARCHNAME) COREDIR = ..\lib\CORE |