Changeset 1354 in kBuild
- Timestamp:
- Dec 3, 2007 1:07:33 AM (17 years ago)
- Location:
- trunk/kBuild/tools
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/tools/VCC70.kmk
r1350 r1354 66 66 # @param $(1) Base name, no extention. 67 67 # @param $(2) The extension. 68 ifeq ($(filter tolower,$(KMK_FEATURES)),tolower)69 68 TOOL_VCC70_PDB = $(dir $(1))$(tolower $(notdir $(1))).$(2) 70 else # this fallback is incorrect and won't work on a case sensitive FS.71 TOOL_VCC70_PDB = $(1).$(2)72 endif73 69 74 70 # General Properties used by kBuild -
trunk/kBuild/tools/VCC80.kmk
r1350 r1354 87 87 # @param $(1) Base name, no extention. 88 88 # @param $(2) The extension. 89 ifeq ($(filter tolower,$(KMK_FEATURES)),tolower)90 89 TOOL_VCC80_PDB = $(dir $(1))$(tolower $(notdir $(1))).$(2) 91 else # this fallback is incorrect and won't work on a case sensitive FS.92 TOOL_VCC80_PDB = $(1).$(2)93 endif94 90 95 91 TOOL_VCC80_COBJSUFF ?= .obj -
trunk/kBuild/tools/VCC80AMD64.kmk
r1351 r1354 72 72 # @param $(1) Base name, no extention. 73 73 # @param $(2) The extension. 74 ifeq ($(filter tolower,$(KMK_FEATURES)),tolower)75 74 TOOL_VCC80AMD64_PDB = $(dir $(1))$(tolower $(notdir $(1))).$(2) 76 else # this fallback is incorrect and won't work on a case sensitive FS.77 TOOL_VCC80AMD64_PDB = $(1).$(2)78 endif79 75 80 76 TOOL_VCC80AMD64_COBJSUFF ?= .obj -
trunk/kBuild/tools/VCC80X86.kmk
r1350 r1354 71 71 # @param $(1) Base name, no extention. 72 72 # @param $(2) The extension. 73 ifeq ($(filter tolower,$(KMK_FEATURES)),tolower) 74 TOOL_VCC80X86_PDB ?= $(dir $(1))$(tolower $(notdir $(1))).$(2) 75 else # this fallback is incorrect and won't work on a case sensitive FS. 76 TOOL_VCC80X86_PDB ?= $(1).$(2) 77 endif 73 TOOL_VCC80X86_PDB = $(dir $(1))$(tolower $(notdir $(1))).$(2) 78 74 79 75
Note:
See TracChangeset
for help on using the changeset viewer.