- Timestamp:
- Aug 11, 2005 9:46:35 PM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/tools/VCC70.kmk
r300 r313 60 60 TOOL_VCC70_LDFLAGS.release := 61 61 62 ## Constructs the correct .pdb name (the name is lowercased). 63 # @param $(1) Base name, no extention. 64 TOOL_VCC70_PDB = $(dir $(1))$(tolower $(notdir $(1))).pdb 65 62 66 63 67 ## Compile C source. … … 87 91 $(subst /,\\,$(call ABSPATH,$(source)))\ 88 92 | $(DEP_PRE) -o $(dep) -t $(obj) - 89 _OUT_FILES += $( outbase).pdb93 _OUT_FILES += $(call TOOL_VCC70_PDB, $(outbase)) 90 94 91 95 endef … … 118 122 $(subst /,\\,$(call ABSPATH,$(source)))\ 119 123 | $(DEP_PRE) -o $(dep) -t $(obj) - 120 _OUT_FILES += $( outbase).pdb124 _OUT_FILES += $(call TOOL_VCC70_PDB, $(outbase)) 121 125 122 126 endef … … 140 144 $(TOOL_VCC70_AR) $(flags) /OUT:$(lib) $(subst /,\\,$(objs) $(filter %.a %.lib,$(othersrc))) \ 141 145 $(foreach def,$(filter %.def,$(othersrc)), /DEF:$(def)) 142 _OUT_FILES += $(outbase).lst $(outbase).exp 146 _OUT_FILES += $(outbase).lst $(outbase).exp $(call TOOL_VCC70_PDB, $(outbase)) 143 147 144 148 endef … … 178 182 $(eval $(custom_post)) 179 183 endif 180 _OUT_FILES += $(outbase).map $(outbase).lib $(outbase).exp $( outbase).pdb$(outbase).ilk184 _OUT_FILES += $(outbase).map $(outbase).lib $(outbase).exp $(call TOOL_VCC70_PDB, $(outbase)) $(outbase).ilk 181 185 182 186 endef … … 216 220 $(eval $(custom_post)) 217 221 endif 218 _OUT_FILES += $(outbase).map $(outbase).lib $(outbase).exp $( outbase).pdb$(outbase).ilk222 _OUT_FILES += $(outbase).map $(outbase).lib $(outbase).exp $(call TOOL_VCC70_PDB, $(outbase)) $(outbase).ilk 219 223 220 224 endef … … 260 264 $(eval $(custom_post)) 261 265 endif 262 _OUT_FILES += $(outbase).map $(outbase).lib $(outbase).exp $( outbase).pdb$(outbase).ilk266 _OUT_FILES += $(outbase).map $(outbase).lib $(outbase).exp $(call TOOL_VCC70_PDB, $(outbase)) $(outbase).ilk 263 267 _DIRS += $(PATH_LIB) 264 268
Note:
See TracChangeset
for help on using the changeset viewer.