1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
|
# $Id: VCC141AMD64.kmk 3346 2020-05-22 20:56:11Z bird $
## @file
# kBuild Tool Config - Visual C++ 14.1 (aka Visual 2017 and MSC v19.10), targeting AMD64.
#
#
# Copyright (c) 2004-2020 knut st. osmundsen <bird-kBuild-spam-xx@anduin.net>
#
# This file is part of kBuild.
#
# kBuild is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# kBuild is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with kBuild; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
#
# As a special exception you are granted permission to include this file, via
# the kmk include directive, as you wish without this in itself causing the
# resulting makefile, program or whatever to be covered by the GPL license.
# This exception does not however invalidate any other reasons why the makefile,
# program, whatever should not be covered the GPL.
#
#
ifndef TOOL_VCC141
include $(KBUILD_PATH)/tools/VCC141.kmk
endif
TOOL_VCC141AMD64 := Visual C++ 14.1 (aka Visual 2017 and MSC v19.1), targeting AMD64
#
# Tool Specific Properties
#
ifndef PATH_TOOL_VCC141AMD64
PATH_TOOL_VCC141AMD64 := $(PATH_TOOL_VCC141)
else
# Resolve any fancy stuff once and for all.
PATH_TOOL_VCC141AMD64 := $(PATH_TOOL_VCC141AMD64)
endif
ifndef PATH_TOOL_VCC141AMD64_BIN
PATH_TOOL_VCC141AMD64_BIN := $(PATH_TOOL_VCC141_HOST_BIN)/x64
else
PATH_TOOL_VCC141AMD64_BIN := $(PATH_TOOL_VCC141AMD64_BIN)
endif
PATH_TOOL_VCC141AMD64_BIN_QSH := $(requote sh,$(PATH_TOOL_VCC141AMD64_BIN))
# A bunch of DLLs are only in the subdir matching the host one, so we need to add it to the PATH when cross compiling.
ifndef PATH_TOOL_VCC141AMD64_DLL_BIN
ifneq ($(PATH_TOOL_VCC141_HOST_DLL_BIN),$(PATH_TOOL_VCC141AMD64_BIN))
PATH_TOOL_VCC141AMD64_DLL_BIN := $(PATH_TOOL_VCC141_HOST_DLL_BIN)
endif
endif
ifndef PATH_TOOL_VCC141AMD64_LIB
PATH_TOOL_VCC141AMD64_LIB := $(PATH_TOOL_VCC141_LIB.amd64)
endif
ifndef PATH_TOOL_VCC141_ONECORE_LIB
PATH_TOOL_VCC141_ONECORE_LIB := $(PATH_TOOL_VCC141_ONECORE_LIB.amd64)
endif
ifndef PATH_TOOL_VCC141AMD64_INC
PATH_TOOL_VCC141AMD64_INC := $(PATH_TOOL_VCC141_INC)
endif
ifndef PATH_TOOL_VCC141AMD64_ATLMFC_INC
PATH_TOOL_VCC141AMD64_ATLMFC_INC := $(PATH_TOOL_VCC141_ATLMFC_INC.amd64)
endif
ifndef PATH_TOOL_VCC141AMD64_ATLMFC_LIB
PATH_TOOL_VCC141AMD64_ATLMFC_LIB := $(PATH_TOOL_VCC141_ATLMFC_LIB.amd64)
endif
TOOL_VCC141AMD64_CC ?= $(EXEC_X86_WIN32) $(PATH_TOOL_VCC141AMD64_BIN_QSH)/cl.exe
TOOL_VCC141AMD64_CXX ?= $(EXEC_X86_WIN32) $(PATH_TOOL_VCC141AMD64_BIN_QSH)/cl.exe
TOOL_VCC141AMD64_AS ?= $(EXEC_X86_WIN32) $(PATH_TOOL_VCC141AMD64_BIN_QSH)/ml64.exe
#TOOL_VCC141AMD64_AR ?= $(EXEC_X86_WIN32) $(PATH_TOOL_VCC141AMD64_BIN_QSH)/lib.exe - just an exec wrapper for the below
TOOL_VCC141AMD64_AR ?= $(EXEC_X86_WIN32) $(PATH_TOOL_VCC141AMD64_BIN_QSH)/link.exe /LIB
TOOL_VCC141AMD64_LD ?= $(EXEC_X86_WIN32) $(PATH_TOOL_VCC141AMD64_BIN_QSH)/link.exe
TOOL_VCC141AMD64_DUMPBIN ?= $(EXEC_X86_WIN32) $(PATH_TOOL_VCC141AMD64_BIN_QSH)/dumpbin.exe
TOOL_VCC141AMD64_EDITBIN ?= $(EXEC_X86_WIN32) $(PATH_TOOL_VCC141AMD64_BIN_QSH)/editbin.exe
TOOL_VCC141AMD64_RC ?= $(EXEC_X86_WIN32) $(call TOOL_VCC141_FN_FIND_SDK_TOOL,rc.exe,[Rr][Cc].[Ee][Xx][Ee],TOOL_VCC141_RC_CACHED)
TOOL_VCC141AMD64_MT ?= $(EXEC_X86_WIN32) $(call TOOL_VCC141_FN_FIND_SDK_TOOL,mt.exe,[Mm][Tt].[Ee][Xx][Ee],TOOL_VCC141_MT_CACHED)
undefine TOOL_VCC141AMD64_USE_KSUBMIT # for now
ifdef TOOL_VCC141AMD64_USE_KSUBMIT
ifeq ($(KBUILD_HOST),win)
ifneq ($(substr $(qdir un,$(PATH_TOOL_VCC141AMD64_BIN)),-3),64/)
TOOL_VCC141AMD64_KSUBMIT ?= kmk_builtin_kSubmit --64-bit
else
TOOL_VCC141AMD64_KSUBMIT ?= kmk_builtin_kSubmit --32-bit
endif
ifdef PATH_TOOL_VCC141AMD64_DLL_BIN
TOOL_VCC141AMD64_KSUBMIT := $(TOOL_VCC141AMD64_KSUBMIT) --prepend "PATH=$(requote shell-in-dq,$(PATH_TOOL_VCC141AMD64_DLL_BIN));"
endif
TOOL_VCC141AMD64_KSUBMIT_DD := $(TOOL_VCC141AMD64_KSUBMIT) --
endif
endif
ifdef PATH_TOOL_VCC141AMD64_DLL_BIN
TOOL_VCC141AMD64_SETUP_ENV := $(REDIRECT) --prepend "PATH=$(requote shell-in-dq,$(PATH_TOOL_VCC141AMD64_DLL_BIN));" --$(SP)
ifndef TOOL_VCC141AMD64_KSUBMIT_DD
TOOL_VCC141AMD64_KSUBMIT_DD := $(TOOL_VCC141AMD64_SETUP_ENV)
endif
endif
# Redist (more stuff in VCC141.kmk).
PATH_TOOL_VCC141AMD64_REDIST ?= $(PATH_TOOL_VCC141_REDIST)/x64
PATH_TOOL_VCC141AMD64_REDIST_CRT = $(PATH_TOOL_VCC141AMD64_REDIST)/$(TOOL_VCC141_REDIST_CRT_SUBDIR)
PATH_TOOL_VCC141AMD64_REDIST_DEBUG ?= $(PATH_TOOL_VCC141_REDIST_DEBUG)/x64
PATH_TOOL_VCC141AMD64_REDIST_DEBUG_CRT = $(PATH_TOOL_VCC141AMD64_REDIST_DEBUG)/$(TOOL_VCC141_REDIST_CRT_SUBDIR)
TOOL_VCC141AMD64_REDIST_CRT_DLLS = $(TOOL_VCC141_REDIST_CRT_DLLS.amd64)
TOOL_VCC141AMD64_REDIST_CONCRT_DLLS = $(TOOL_VCC141_REDIST_CONCRT_DLLS.amd64)
TOOL_VCC141AMD64_REDIST_CPP_DLLS = $(TOOL_VCC141_REDIST_CPP_DLLS.amd64)
TOOL_VCC141AMD64_REDIST_WINRT_DLLS = $(TOOL_VCC141_REDIST_WINRT_DLLS.amd64)
#
# Properties used by kBuild
#
TOOL_VCC141AMD64_COBJSUFF ?= .obj
TOOL_VCC141AMD64_CFLAGS ?= -TC -nologo -Zi -ZH:SHA_256
TOOL_VCC141AMD64_CFLAGS.debug ?=
TOOL_VCC141AMD64_CFLAGS.dbgopt ?= -O2
TOOL_VCC141AMD64_CFLAGS.release ?= -O2
TOOL_VCC141AMD64_CFLAGS.profile ?= -O2
TOOL_VCC141AMD64_CINCS ?= $(PATH_TOOL_VCC141AMD64_INC)
TOOL_VCC141AMD64_CDEFS ?=
TOOL_VCC141AMD64_CXXOBJSUFF ?= .obj
TOOL_VCC141AMD64_CXXFLAGS ?= -TP -nologo -Zi -ZH:SHA_256
TOOL_VCC141AMD64_CXXFLAGS.debug ?=
TOOL_VCC141AMD64_CXXFLAGS.dbgopt ?= -O2
TOOL_VCC141AMD64_CXXFLAGS.release ?= -O2
TOOL_VCC141AMD64_CXXFLAGS.profile ?= -O2
TOOL_VCC141AMD64_CXXINCS ?= $(PATH_TOOL_VCC141AMD64_INC) $(PATH_TOOL_VCC141AMD64_ATLMFC_INC)
TOOL_VCC141AMD64_CXXDEFS ?=
TOOL_VCC141AMD64_ASOBJSUFF ?= .obj
TOOL_VCC141AMD64_RCOBJSUFF ?= .res
TOOL_VCC141AMD64_RCINCS ?= $(PATH_TOOL_VCC141AMD64_INC) $(PATH_TOOL_VCC141AMD64_ATLMFC_INC)
TOOL_VCC141AMD64_ARFLAGS ?= -nologo -machine:amd64
TOOL_VCC141AMD64_ARLIBSUFF ?= .lib
TOOL_VCC141AMD64_LDFLAGS ?= -nologo -machine:amd64
TOOL_VCC141AMD64_LDFLAGS.debug ?= -debug
TOOL_VCC141AMD64_LDFLAGS.dbgopt ?= -debug
TOOL_VCC141AMD64_LDFLAGS.profile ?= -debug
TOOL_VCC141AMD64_LDFLAGS.release ?=
## Compile C source.
# @param $(target) Normalized main target name.
# @param $(source) Source filename (relative).
# @param $(obj) Object file name. This shall be (re)created by the compilation.
# @param $(dep) Dependcy file. This shall be (re)created by the compilation.
# @param $(flags) Flags.
# @param $(defs) Definitions. No -D or something.
# @param $(incs) Includes. No -I or something.
# @param $(dirdep) Directory creation dependency.
# @param $(deps) Other dependencies.
#
# @param $(outbase) Output basename (full). Use this for list files and such.
# @param $(objsuff) Object suffix.
TOOL_VCC141AMD64_COMPILE_C_DEPEND =
TOOL_VCC141AMD64_COMPILE_C_DEPORD =
TOOL_VCC141AMD64_COMPILE_C_OUTPUT =
TOOL_VCC141AMD64_COMPILE_C_OUTPUT_MAYBE = $(call TOOL_VCC141_PDB, $(outbase)-obj,pdb) $(call TOOL_VCC141_PDB, $(outbase)-obj,idb)
ifdef TOOL_VCC141AMD64_KSUBMIT
TOOL_VCC141AMD64_COMPILE_C_DONT_PURGE_OUTPUT := 1 # speed
define TOOL_VCC141AMD64_COMPILE_C_CMDS
$(QUIET)$(TOOL_VCC141AMD64_KSUBMIT) -P $(DEP_OBJ_INT) -f -s -q -o $(dep) -t $(obj) $(obj)\
-- $(TOOL_VCC141AMD64_CC) -c\
$(flags) $(qaddprefix sh,-I, $(incs)) $(qaddprefix sh,-D, $(defs))\
-Fd$(outbase)-obj.pdb \
-Fo$(obj)\
$(subst /,\\,$(abspath $(source)))
endef
else
define TOOL_VCC141AMD64_COMPILE_C_CMDS
$(QUIET)$(TOOL_VCC141AMD64_SETUP_ENV)$(TOOL_VCC141AMD64_CC) -c\
$(flags) $(qaddprefix sh,-I, $(incs)) $(qaddprefix sh,-D, $(defs))\
-Fd$(outbase)-obj.pdb \
-Fo$(obj)\
$(subst /,\\,$(abspath $(source)))
$(QUIET)$(DEP_OBJ) -f -s -q -o $(dep) -t $(obj) $(obj)
endef
endif # !TOOL_VCC141AMD64_KSUBMIT
## Compile C++ source.
# @param $(target) Normalized main target name.
# @param $(source) Source filename (relative).
# @param $(obj) Object file name. This shall be (re)created by the compilation.
# @param $(dep) Dependcy file. This shall be (re)created by the compilation.
# @param $(flags) Flags.
# @param $(defs) Definitions. No -D or something.
# @param $(incs) Includes. No -I or something.
# @param $(dirdep) Directory creation dependency.
# @param $(deps) Other dependencies.
#
# @param $(outbase) Output basename (full). Use this for list files and such.
# @param $(objsuff) Object suffix.
TOOL_VCC141AMD64_COMPILE_CXX_DEPEND = $($(target)_1_VCC_PCH_FILE)
TOOL_VCC141AMD64_COMPILE_CXX_DEPORD =
TOOL_VCC141AMD64_COMPILE_CXX_OUTPUT =
TOOL_VCC141AMD64_COMPILE_CXX_OUTPUT_MAYBE = $(if-expr defined($(target)_1_VCC_COMMON_OBJ_PDB)\
,,$(call TOOL_VCC141_PDB, $(outbase)-obj,pdb) $(call TOOL_VCC141_PDB, $(outbase)-obj,idb))
ifdef TOOL_VCC141AMD64_KSUBMIT
TOOL_VCC141AMD64_COMPILE_CXX_DONT_PURGE_OUTPUT := 1 # speed
define TOOL_VCC141AMD64_COMPILE_CXX_CMDS
$(QUIET)$(TOOL_VCC141AMD64_KSUBMIT) -P $(DEP_OBJ_INT) -f -s -q -o $(dep) -t $(obj) $(obj)\
-- $(TOOL_VCC141AMD64_CXX) -c\
$(flags) $(qaddprefix sh,-I, $(incs)) $(qaddprefix sh,-D, $(defs))\
$(if-expr defined($(target)_PCH_HDR)\
,-FI$($(target)_PCH_HDR) -Yu$($(target)_PCH_HDR) -Fp$($(target)_1_VCC_PCH_FILE) -FS,)\
-Fd$(if-expr defined($(target)_1_VCC_COMMON_OBJ_PDB),$($(target)_1_VCC_COMMON_OBJ_PDB),$(outbase)-obj.pdb) \
-Fo$(obj)\
$(subst /,\\,$(abspath $(source)))
endef
else
define TOOL_VCC141AMD64_COMPILE_CXX_CMDS
$(QUIET)$(TOOL_VCC141AMD64_SETUP_ENV)$(TOOL_VCC141AMD64_CXX) -c\
$(flags) $(qaddprefix sh,-I, $(incs)) $(qaddprefix sh,-D, $(defs))\
$(if-expr defined($(target)_PCH_HDR)\
,-FI$($(target)_PCH_HDR) -Yu$($(target)_PCH_HDR) -Fp$($(target)_1_VCC_PCH_FILE) -FS,)\
-Fd$(if-expr defined($(target)_1_VCC_COMMON_OBJ_PDB),$($(target)_1_VCC_COMMON_OBJ_PDB),$(outbase)-obj.pdb) \
-Fo$(obj)\
$(subst /,\\,$(abspath $(source)))
$(QUIET)$(DEP_OBJ) -f -s -q -o $(dep) -t $(obj) $(obj)
endef
endif # !TOOL_VCC141AMD64_KSUBMIT
#
# Helper tool for creating the precompiled C++ header.
#
# It only have the C++ compile bits and it's purpose is to skip bits
# related _1_VCC_PCH_FILE and add -Yc.
#
TOOL_VCC141AMD64-PCH := Helper for creating precompiled header using CXX handling.
TOOL_VCC141AMD64-PCH_EXTENDS := VCC141AMD64
TOOL_VCC141AMD64-PCH_CXXOBJSUFF := .obj
TOOL_VCC141AMD64-PCH_CXXINCS = $(TOOL_VCC141AMD64_CXXINCS)
TOOL_VCC141AMD64-PCH_CXXFLAGS = $(TOOL_VCC141AMD64_CXXFLAGS) -FS
TOOL_VCC141AMD64-PCH_CXXFLAGS.debug = $(TOOL_VCC141AMD64_CXXFLAGS.debug)
TOOL_VCC141AMD64-PCH_CXXFLAGS.dbgopt = $(TOOL_VCC141AMD64_CXXFLAGS.dbgopt)
TOOL_VCC141AMD64-PCH_CXXFLAGS.release = $(TOOL_VCC141AMD64_CXXFLAGS.release)
TOOL_VCC141AMD64-PCH_CXXFLAGS.profile = $(TOOL_VCC141AMD64_CXXFLAGS.profile)
TOOL_VCC141AMD64-PCH_COMPILE_CXX_DEPEND = $(NO_SUCH_VARIABLE)
TOOL_VCC141AMD64-PCH_COMPILE_CXX_DEPORD = $(NO_SUCH_VARIABLE)
TOOL_VCC141AMD64-PCH_COMPILE_CXX_OUTPUT = $($(target)_1_VCC_PCH_FILE) $($(target)_1_VCC_COMMON_OBJ_PDB)
TOOL_VCC141AMD64-PCH_COMPILE_CXX_OUTPUT_MAYBE = $(NO_SUCH_VARIABLE)
ifdef TOOL_VCC141AMD64_KSUBMIT
define TOOL_VCC141AMD64-PCH_COMPILE_CXX_CMDS
$(QUIET)$(RM) -f -- $($(target)_1_VCC_PCH_FILE) $($(target)_1_VCC_COMMON_OBJ_PDB)
$(QUIET)$(TOOL_VCC141AMD64_KSUBMIT) --no-pch-caching -P $(DEP_OBJ_INT) -f -s -q -e .pch -o $(dep) -t $(obj) $(obj)\
-- $(TOOL_VCC141AMD64_CXX) -c -Yc\
$(flags) $(qaddprefix sh,-I, $(incs)) $(qaddprefix sh,-D, $(defs))\
-Fp$($(target)_1_VCC_PCH_FILE) \
-Fd$($(target)_1_VCC_COMMON_OBJ_PDB) \
-Fo$(obj)\
-TP \
$(subst /,\\,$(abspath $(source)))
endef
else
define TOOL_VCC141AMD64-PCH_COMPILE_CXX_CMDS
$(QUIET)$(RM) -f -- $($(target)_1_VCC_PCH_FILE) $($(target)_1_VCC_COMMON_OBJ_PDB)
$(QUIET)$(TOOL_VCC141AMD64_SETUP_ENV)$(TOOL_VCC141AMD64_CXX) -c -Yc\
$(flags) $(qaddprefix sh,-I, $(incs)) $(qaddprefix sh,-D, $(defs))\
-Fp$($(target)_1_VCC_PCH_FILE) \
-Fd$($(target)_1_VCC_COMMON_OBJ_PDB) \
-Fo$(obj)\
-TP \
$(subst /,\\,$(abspath $(source)))
$(QUIET)$(DEP_OBJ) -f -s -q -e .pch -o $(dep) -t $(obj) $(obj)
endef
endif # !TOOL_VCC141AMD64_KSUBMIT
## @todo configure the assembler template.
## Compile resource source.
# @param $(target) Normalized main target name.
# @param $(source) Source filename (relative).
# @param $(obj) Object file name. This shall be (re)created by the compilation.
# @param $(dep) Dependcy file. This shall be (re)created by the compilation.
# @param $(flags) Flags.
# @param $(defs) Definitions. No -D or something.
# @param $(incs) Includes. No -I or something.
# @param $(dirdep) Directory creation dependency.
# @param $(deps) Other dependencies.
#
# @param $(outbase) Output basename (full). Use this for list files and such.
# @param $(objsuff) Object suffix.
TOOL_VCC141AMD64_COMPILE_RC_DEPEND =
TOOL_VCC141AMD64_COMPILE_RC_DEPORD =
TOOL_VCC141AMD64_COMPILE_RC_OUTPUT =
define TOOL_VCC141AMD64_COMPILE_RC_CMDS
$(QUIET)$(TOOL_VCC141AMD64_RC) \
$(flags) $(qaddprefix sh,/i, $(subst /,\\,$(incs))) $(qaddprefix sh,/d, $(defs))\
/fo$(obj)\
$(subst /,\\,$(abspath $(source)))
endef
## Link library
# @param $(target) Normalized main target name.
# @param $(out) Library name.
# @param $(objs) Object files to put in the library.
# @param $(flags) Flags.
# @param $(dirdep) Directory creation dependency.
# @param $(deps) Other dependencies.
# @param $(othersrc) Unhandled sources.
# @param $(outbase) Output basename (full). Use this for list files and such.
#
TOOL_VCC141AMD64_LINK_LIBRARY_DEPEND = $(othersrc)
TOOL_VCC141AMD64_LINK_LIBRARY_DEPORD =
TOOL_VCC141AMD64_LINK_LIBRARY_OUTPUT = $(outbase).rsp
TOOL_VCC141AMD64_LINK_LIBRARY_OUTPUT_MAYBE = $(outbase).lst $(outbase).exp $(outbase).pdb
define TOOL_VCC141AMD64_LINK_LIBRARY_CMDS
$(QUIET)$(APPEND) -tn $(outbase).rsp \
$(qforeachfile u,arg, $(objs) $(filter-out %.def,$(othersrc)),$(quote-sh "$(subst /,\,$(arg))")) \
$(qforeachfile u,arg, $(filter %.def,$(othersrc)),$(quote-sh "/DEF:$(subst /,\,$(arg))"))
$(QUIET)$(TOOL_VCC141AMD64_KSUBMIT_DD) $(TOOL_VCC141AMD64_AR) $(flags) /OUT:$(out) @$(outbase).rsp
endef
## Link program
# @param $(target) Normalized main target name.
# @param $(out) Program name.
# @param $(objs) Object files to link together.
# @param $(libs) Libraries to search.
# @param $(libpath) Library search paths.
# @param $(flags) Flags.
# @param $(dirdep) Directory creation dependency.
# @param $(deps) Other dependencies.
# @param $(othersrc) Unhandled sources.
# @param $(custom_pre) Custom step invoked before linking.
# @param $(custom_post) Custom step invoked after linking.
# @param $(outbase) Output basename (full). Use this for list files and such.
#
TOOL_VCC141AMD64_LINK_PROGRAM_DEPEND = $(foreachfile lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib))) $(othersrc)
TOOL_VCC141AMD64_LINK_PROGRAM_DEPORD =
TOOL_VCC141AMD64_LINK_PROGRAM_OUTPUT_MAYBE_PRECIOUS = $(outbase).map $(outbase).rsp
TOOL_VCC141AMD64_LINK_PROGRAM_OUTPUT_MAYBE = $(outbase).lib $(outbase).exp $(outbase).ilk $(out).manifest
TOOL_VCC141AMD64_LINK_PROGRAM_OUTPUT_DEBUG = $(outbase).pdb
TOOL_VCC141AMD64_LINK_PROGRAM_DEBUG_INSTALL_FN = $(2).pdb=>$(basename $(3)).pdb
define TOOL_VCC141AMD64_LINK_PROGRAM_CMDS
$(QUIET)$(APPEND) -tn $(outbase).rsp \
$(qforeachfile u,arg, $(objs) $(libs),$(quote-sh "$(subst /,\,$(arg))"))
$(QUIET)$(TOOL_VCC141AMD64_KSUBMIT_DD) $(TOOL_VCC141AMD64_LD) $(flags) \
/OUT:$(out) \
/MAPINFO:EXPORTS /INCREMENTAL:NO \
/MAP:$(outbase).map \
$(foreach def,$(filter %.def,$(othersrc)), /DEF:$(def)) \
$(subst /,\\,$(filter %.exp %.res,$(othersrc))) \
$(qaddprefix sh,/LIBPATH:,$(libpath)) \
@$(outbase).rsp
ifndef TOOL_VCC141AMD64_NO_AUTO_MANIFEST
$(QUIET)$(TEST) -f $(out).manifest -- \
$(TOOL_VCC141AMD64_MT) -manifest $(subst /,\\,$(out)).manifest -outputresource:$(subst /,\\,$(out))
endif
endef
## Link DLL.
# @param $(target) Normalized main target name.
# @param $(out) DLL name.
# @param $(objs) Object files to link together.
# @param $(libs) Libraries to search.
# @param $(libpath) Library search paths.
# @param $(flags) Flags.
# @param $(dirdep) Directory creation dependency.
# @param $(deps) Other dependencies.
# @param $(othersrc) Unhandled sources.
# @param $(custom_pre) Custom step invoked before linking.
# @param $(custom_post) Custom step invoked after linking.
#
# @param $(outbase) Output basename (full). Use this for list files and such.
TOOL_VCC141AMD64_LINK_DLL_DEPEND = $(foreachfile lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib))) $(othersrc)
TOOL_VCC141AMD64_LINK_DLL_DEPORD = $(call DIRDEP,$(PATH_STAGE_LIB))
TOOL_VCC141AMD64_LINK_DLL_OUTPUT = $(outbase).lib $(outbase).exp
TOOL_VCC141AMD64_LINK_DLL_OUTPUT_MAYBE = $(outbase).ilk $(out).manifest $(PATH_STAGE_LIB)/$(notdir $(outbase)).exp
TOOL_VCC141AMD64_LINK_DLL_OUTPUT_MAYBE_PRECIOUS = $(PATH_STAGE_LIB)/$(notdir $(outbase)).lib $(outbase).map $(outbase).rsp
TOOL_VCC141AMD64_LINK_DLL_OUTPUT_DEBUG = $(outbase).pdb
TOOL_VCC141AMD64_LINK_DLL_DEBUG_INSTALL_FN = $(2).pdb=>$(basename $(3)).pdb
define TOOL_VCC141AMD64_LINK_DLL_CMDS
$(QUIET)$(APPEND) -tn $(outbase).rsp \
$(qforeachfile u,arg, $(objs) $(libs),$(quote-sh "$(subst /,\,$(arg))"))
$(QUIET)$(TOOL_VCC141AMD64_KSUBMIT_DD) $(TOOL_VCC141AMD64_LD) $(flags) \
/OUT:$(out) \
/IMPLIB:$(outbase).lib \
/MAPINFO:EXPORTS /INCREMENTAL:NO \
/MAP:$(outbase).map \
/DLL \
$(foreach def,$(filter %.def,$(othersrc)), /DEF:$(def)) \
$(subst /,\\,$(filter %.exp %.res,$(othersrc))) \
$(qaddprefix sh,/LIBPATH:,$(libpath)) \
@$(outbase).rsp
ifndef TOOL_VCC141AMD64_NO_AUTO_MANIFEST
$(QUIET)$(TEST) -f $(out).manifest -- \
$(TOOL_VCC141AMD64_MT) -manifest $(subst /,\\,$(out)).manifest '-outputresource:$(subst /,\\,$(out));#2'
endif
$(QUIET)$(TEST) -f $(outbase).lib -- $(KLIBTWEAKER_EXT) --clear-timestamps $(outbase).lib
$(QUIET)$(CP) --changed -v --ignore-non-existing $(outbase).exp $(outbase).lib $(PATH_STAGE_LIB)/
$(eval _DIRS += $(PATH_STAGE_LIB))
endef
## Link system module (windows aka driver, linux aka kernel module)
# @param $(target) Normalized main target name.
# @param $(out) System module name.
# @param $(objs) Object files to link together.
# @param $(libs) Libraries to search.
# @param $(libpath) Library search paths.
# @param $(flags) Flags.
# @param $(dirdep) Directory creation dependency.
# @param $(deps) Other dependencies.
# @param $(othersrc) Unhandled sources.
# @param $(custom_pre) Custom step invoked before linking.
# @param $(custom_post) Custom step invoked after linking.
#
# @param $(outbase) Output basename (full). Use this for list files and such.
TOOL_VCC141AMD64_LINK_SYSMOD_DEPEND = $(foreachfile lib,$(libs),$(if $(findstring $(lib),$(subst /,x,$(lib))),, $(lib))) $(othersrc)
TOOL_VCC141AMD64_LINK_SYSMOD_DEPORD =
TOOL_VCC141AMD64_LINK_SYSMOD_OUTPUT_MAYBE = $(outbase).lib $(outbase).exp $(outbase).ilk $(out).manifest
TOOL_VCC141AMD64_LINK_SYSMOD_OUTPUT_MAYBE_PRECIOUS = $(outbase).map $(outbase).rsp
TOOL_VCC141AMD64_LINK_SYSMOD_OUTPUT_DEBUG = $(outbase).pdb
TOOL_VCC141AMD64_LINK_SYSMOD_DEBUG_INSTALL_FN = $(2).pdb=>$(basename $(3)).pdb
define TOOL_VCC141AMD64_LINK_SYSMOD_CMDS
$(QUIET)$(APPEND) -tn $(outbase).rsp \
$(qforeachfile u,arg, $(objs) $(libs),$(quote-sh "$(subst /,\,$(arg))"))
$(QUIET)$(TOOL_VCC141AMD64_KSUBMIT_DD) $(TOOL_VCC141AMD64_LD) $(flags) \
/OUT:$(out) \
/MAPINFO:EXPORTS /INCREMENTAL:NO \
/MAP:$(outbase).map \
$(foreach def,$(filter %.def,$(othersrc)), /DEF:$(def)) \
$(subst /,\\,$(filter %.exp %.res,$(othersrc))) \
$(qaddprefix sh,/LIBPATH:,$(libpath)) \
@$(outbase).rsp
ifndef TOOL_VCC141AMD64_NO_AUTO_MANIFEST
$(QUIET)$(TEST) -f $(out).manifest -- \
$(TOOL_VCC141AMD64_MT) -manifest $(subst /,\\,$(out)).manifest '-outputresource:$(subst /,\\,$(out));#2'
endif
endef
|