Changeset 768 for trunk/kBuild/tools/VCC80AMD64.kmk
- Timestamp:
- Jan 19, 2007, 3:52:39 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/tools/VCC80AMD64.kmk
r735 r768 224 224 # @param $(outbase) Output basename (full). Use this for list files and such. 225 225 # 226 TOOL_VCC80AMD64_LINK_LIBRARY_OUTPUT = $(outbase).lst $(outbase).exp $(outbase).pdb227 226 TOOL_VCC80AMD64_LINK_LIBRARY_DEPEND = $(othersrc) 228 227 TOOL_VCC80AMD64_LINK_LIBRARY_DEPORD = 228 ifeq ($(filter append-dash-n,$(KMK_FEATURES)),append-dash-n) 229 TOOL_VCC80AMD64_LINK_LIBRARY_OUTPUT = $(outbase).lst $(outbase).exp $(outbase).pdb $(outbase).rsp 230 define TOOL_VCC80AMD64_LINK_LIBRARY_CMDS 231 $(QUIET)$(APPEND) -n $(outbase).rsp \ 232 $(foreach arg,\ 233 $(subst /,\\,$(objs) \ 234 $(filter-out %.def,$(othersrc))) \ 235 $(addprefix /DEF:,$(filter %.def,$(othersrc))) \ 236 ,\"$(arg)\") 237 $(QUIET)$(TOOL_VCC80AMD64_AR) $(flags) /OUT:$(out) @$(outbase).rsp 238 endef 239 else 240 TOOL_VCC80AMD64_LINK_LIBRARY_OUTPUT = $(outbase).lst $(outbase).exp $(outbase).pdb 229 241 define TOOL_VCC80AMD64_LINK_LIBRARY_CMDS 230 242 $(QUIET)$(TOOL_VCC80AMD64_AR) $(flags) /OUT:$(out) $(subst /,\\,$(objs) $(filter %.a %.lib,$(othersrc))) \ 231 243 $(foreach def,$(filter %.def,$(othersrc)), /DEF:$(def)) 232 244 endef 245 endif 233 246 234 247
Note:
See TracChangeset
for help on using the changeset viewer.