Changeset 2895 for trunk/kBuild/tools/VCC100X86.kmk
- Timestamp:
- Sep 8, 2016, 3:28:37 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/tools/VCC100X86.kmk
r2870 r2895 76 76 ifdef TOOL_VCC100X86_USE_KSUBMIT 77 77 ifeq ($(KBUILD_HOST),win) 78 TOOL_VCC100X86_KSUBMIT ?= kmk_builtin_kSubmit --32-bit --78 TOOL_VCC100X86_KSUBMIT ?= kmk_builtin_kSubmit --32-bit 79 79 endif 80 80 endif … … 169 169 TOOL_VCC100X86_COMPILE_C_OUTPUT = $(call TOOL_VCC100X86_PDB, $(outbase)-obj,idb) 170 170 TOOL_VCC100X86_COMPILE_C_OUTPUT_MAYBE = $(call TOOL_VCC100X86_PDB, $(outbase)-obj,pdb) 171 ifdef TOOL_VCC100X86_KSUBMIT 171 172 define TOOL_VCC100X86_COMPILE_C_CMDS 172 $(QUIET)$(TOOL_VCC100X86_KSUBMIT) $(TOOL_VCC100X86_CC) -c\ 173 $(QUIET)$(TOOL_VCC100X86_KSUBMIT) -P $(DEP_OBJ_INT) -f -s -q -o $(dep) -t $(obj) $(obj)\ 174 -- $(TOOL_VCC100X86_CC) -c\ 173 175 $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\ 174 176 -Fd$(outbase)-obj.pdb \ … … 176 178 -Fo$(obj)\ 177 179 $(subst /,\\,$(abspath $(source))) 180 endef 181 else 182 define TOOL_VCC100X86_COMPILE_C_CMDS 183 $(QUIET)$(TOOL_VCC100X86_CC) -c\ 184 $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\ 185 -Fd$(outbase)-obj.pdb \ 186 -FD\ 187 -Fo$(obj)\ 188 $(subst /,\\,$(abspath $(source))) 178 189 $(QUIET)$(DEP_IDB) -f -s -q -o $(dep) -t $(obj) $(call TOOL_VCC100X86_PDB,$(outbase)-obj,idb) 179 190 endef 191 endif # !TOOL_VCC100X86_KSUBMIT 180 192 endif # !KBUILD_USE_KOBJCACHE 181 193 … … 217 229 TOOL_VCC100X86_COMPILE_CXX_OUTPUT = $(call TOOL_VCC100X86_PDB, $(outbase)-obj,idb) 218 230 TOOL_VCC100X86_COMPILE_CXX_OUTPUT_MAYBE = $(call TOOL_VCC100X86_PDB, $(outbase)-obj,pdb) 231 ifdef TOOL_VCC100X86_KSUBMIT 219 232 define TOOL_VCC100X86_COMPILE_CXX_CMDS 220 $(QUIET)$(TOOL_VCC100X86_KSUBMIT) $(TOOL_VCC100X86_CXX) -c\ 233 $(QUIET)$(TOOL_VCC100X86_KSUBMIT) -P $(DEP_OBJ_INT) -f -s -q -o $(dep) -t $(obj) $(obj)\ 234 -- $(TOOL_VCC100X86_CXX) -c\ 221 235 $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\ 222 236 -Fd$(outbase)-obj.pdb \ … … 224 238 -Fo$(obj)\ 225 239 $(subst /,\\,$(abspath $(source))) 240 endef 241 else 242 define TOOL_VCC100X86_COMPILE_CXX_CMDS 243 $(QUIET)$(TOOL_VCC100X86_CXX) -c\ 244 $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\ 245 -Fd$(outbase)-obj.pdb \ 246 -FD\ 247 -Fo$(obj)\ 248 $(subst /,\\,$(abspath $(source))) 226 249 $(QUIET)$(DEP_IDB) -f -s -q -o $(dep) -t $(obj) $(call TOOL_VCC100X86_PDB,$(outbase)-obj,idb) 227 250 endef 251 endif # !TOOL_VCC100X86_KSUBMIT 228 252 endif # !KBUILD_USE_KOBJCACHE 229 253
Note:
See TracChangeset
for help on using the changeset viewer.