winbuild: Fix PDB file output
And fix some newlines to be proper CRLF Bug: http://curl.haxx.se/bug/view.cgi?id=3586741
This commit is contained in:
committed by
Daniel Stenberg
parent
53c83ee3ed
commit
6d8443a245
@@ -32,7 +32,7 @@ CFGSET=true
|
||||
!MESSAGE ENABLE_WINSSL=<yes or no> - Enable native Windows SSL support, defaults to yes
|
||||
!MESSAGE GEN_PDB=<yes or no> - Generate Program Database (debug symbols for release build)
|
||||
!MESSAGE DEBUG=<yes or no> - Debug builds
|
||||
!MESSAGE MACHINE=<x86 or x64> - Target architecture (default x64 on AMD64, x86 on others)
|
||||
!MESSAGE MACHINE=<x86 or x64> - Target architecture (default x64 on AMD64, x86 on others)
|
||||
!ERROR please choose a valid mode
|
||||
|
||||
!ENDIF
|
||||
@@ -58,11 +58,11 @@ ENABLE_SSPI = $(USE_SSPI)
|
||||
!IFNDEF MACHINE
|
||||
!IF "$(PROCESSOR_ARCHITECTURE)"=="AMD64"
|
||||
MACHINE = x64
|
||||
!ELSE
|
||||
!ELSE
|
||||
MACHINE = x86
|
||||
!ENDIF
|
||||
!ENDIF
|
||||
|
||||
!ENDIF
|
||||
!ENDIF
|
||||
|
||||
!IFNDEF ENABLE_IDN
|
||||
USE_IDN = true
|
||||
!ELSEIF "$(ENABLE_IDN)"=="yes"
|
||||
@@ -129,8 +129,8 @@ USE_SSH2 = true
|
||||
SSH2 = static
|
||||
!ENDIF
|
||||
|
||||
CONFIG_NAME_LIB = $(CONFIG_NAME_LIB)-$(MACHINE)
|
||||
|
||||
CONFIG_NAME_LIB = $(CONFIG_NAME_LIB)-vc$(VC)-$(MACHINE)
|
||||
|
||||
!IF "$(DEBUG)"=="yes"
|
||||
CONFIG_NAME_LIB = $(CONFIG_NAME_LIB)-debug
|
||||
!ELSE
|
||||
@@ -179,18 +179,18 @@ CURL_DIROBJ = ..\builds\$(CONFIG_NAME_LIB)-obj-curl
|
||||
DIRDIST = ..\builds\$(CONFIG_NAME_LIB)\
|
||||
|
||||
$(MODE):
|
||||
@SET DIROBJ=$(LIBCURL_DIROBJ)
|
||||
@SET DIROBJ=$(LIBCURL_DIROBJ)
|
||||
@SET MACRO_NAME=LIBCURL_OBJS
|
||||
@SET OUTFILE=LIBCURL_OBJS.inc
|
||||
@gen_resp_file.bat $(LIBCURL_OBJS)
|
||||
|
||||
@SET DIROBJ=$(CURL_DIROBJ)
|
||||
|
||||
@SET DIROBJ=$(CURL_DIROBJ)
|
||||
@SET MACRO_NAME=CURL_OBJS
|
||||
@SET OUTFILE=CURL_OBJS.inc
|
||||
@gen_resp_file.bat $(CURL_OBJS)
|
||||
|
||||
@SET CONFIG_NAME_LIB=$(CONFIG_NAME_LIB)
|
||||
@SET MACHINE=$(MACHINE)
|
||||
|
||||
@SET CONFIG_NAME_LIB=$(CONFIG_NAME_LIB)
|
||||
@SET MACHINE=$(MACHINE)
|
||||
@SET USE_IDN=$(USE_IDN)
|
||||
@SET USE_IPV6=$(USE_IPV6)
|
||||
@SET USE_SSPI=$(USE_SSPI)
|
||||
|
||||
Reference in New Issue
Block a user