diff options
author | Steve Hay <SteveHay@planit.com> | 2007-07-06 11:08:37 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2007-07-06 11:08:37 +0000 |
commit | 457f4f73fc6a8a0a2205d2596dac7b13693d3c40 (patch) | |
tree | 053eded1ebe06698abe0b1b5a05705822f90114c /win32 | |
parent | 6ef249b908f1fd6caec1b0140c6be9c66f4eb1f2 (diff) | |
download | perl-457f4f73fc6a8a0a2205d2596dac7b13693d3c40.tar.gz |
Add Borland linker option to not generate .map files
(They are not generated by default by VC++ or MinGW, and there
doesn't seem to be any need for them.)
p4raw-id: //depot/perl@31539
Diffstat (limited to 'win32')
-rw-r--r-- | win32/makefile.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/makefile.mk b/win32/makefile.mk index c1ba4a39d2..f565f84fe1 100644 --- a/win32/makefile.mk +++ b/win32/makefile.mk @@ -443,7 +443,7 @@ LINK_DBG = EXTRACFLAGS = CFLAGS = -w -g0 -tWM -tWD $(INCLUDES) $(DEFINES) $(LOCDEFS) \ $(PCHFLAGS) $(OPTIMIZE) -LINK_FLAGS = $(LINK_DBG) -L"$(INST_COREDIR)" -L"$(CCLIBDIR)" \ +LINK_FLAGS = $(LINK_DBG) -x -L"$(INST_COREDIR)" -L"$(CCLIBDIR)" \ -L"$(CCLIBDIR)\PSDK" OBJOUT_FLAG = -o EXEOUT_FLAG = -e |