Changeset 1015 for trunk/kBuild/tools/GXX3PLAIN.kmk
- Timestamp:
- Jun 2, 2007, 8:57:50 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/tools/GXX3PLAIN.kmk
r971 r1015 98 98 # @param $(outbase) Output basename (full). Use this for list files and such. 99 99 # @param $(objsuff) Object suffix. 100 TOOL_GXX3PLAIN_COMPILE_C_DEPEND = 101 ifdef USE_KOBJCACHE 102 TOOL_GXX3PLAIN_COMPILE_C_USES_KOBJCACHE = 1 103 TOOL_GXX3PLAIN_COMPILE_C_OUTPUT = $(outbase).i 104 define TOOL_GXX3PLAIN_COMPILE_C_CMDS 105 $(QUIET)$(KOBJCACHE) -f $(outbase).koc -r --kObjCache-cpp $(outbase).i \ 106 $(TOOL_GXX3PLAIN_CC) -E -o -\ 107 $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\ 108 -Wp,-MD,$(dep) -Wp,-MT,$(obj) -Wp,-MP\ 109 $(abspath $(source)) \ 110 --kObjCache-cc $(obj) \ 111 $(TOOL_GXX3PLAIN_CC) -c\ 112 $(flags)\ 113 -o $(obj)\ 114 $(outbase).i 115 endef 116 else # !USE_KOBJCACHE 117 TOOL_GXX3PLAIN_COMPILE_C_DEPORD = 100 118 TOOL_GXX3PLAIN_COMPILE_C_OUTPUT = 101 TOOL_GXX3PLAIN_COMPILE_C_DEPEND =102 TOOL_GXX3PLAIN_COMPILE_C_DEPORD =103 119 define TOOL_GXX3PLAIN_COMPILE_C_CMDS 104 120 $(QUIET)$(TOOL_GXX3PLAIN_CC) -c\ … … 108 124 $(abspath $(source)) 109 125 endef 126 endif # !USE_KOBJCACHE 110 127 111 128 … … 122 139 # @param $(outbase) Output basename (full). Use this for list files and such. 123 140 # @param $(objsuff) Object suffix. 124 TOOL_GXX3PLAIN_COMPILE_CXX_OUTPUT =125 141 TOOL_GXX3PLAIN_COMPILE_CXX_DEPEND = 126 142 TOOL_GXX3PLAIN_COMPILE_CXX_DEPORD = 143 ifdef USE_KOBJCACHE 144 TOOL_GXX3PLAIN_COMPILE_CXX_USES_KOBJCACHE = 1 145 TOOL_GXX3PLAIN_COMPILE_CXX_OUTPUT = $(outbase).ii 146 define TOOL_GXX3PLAIN_COMPILE_CXX_CMDS 147 $(QUIET)$(KOBJCACHE) -f $(outbase).koc -r --kObjCache-cpp $(outbase).ii \ 148 $(TOOL_GXX3PLAIN_CXX) -E -o -\ 149 $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\ 150 -Wp,-MD,$(dep) -Wp,-MT,$(obj) -Wp,-MP\ 151 $(abspath $(source)) \ 152 --kObjCache-cc $(obj) \ 153 $(TOOL_GXX3PLAIN_CXX) -c\ 154 $(flags)\ 155 -o $(obj)\ 156 $(outbase).ii 157 endef 158 else # !USE_KOBJCACHE 159 TOOL_GXX3PLAIN_COMPILE_CXX_OUTPUT = 127 160 define TOOL_GXX3PLAIN_COMPILE_CXX_CMDS 128 161 $(QUIET)$(TOOL_GXX3PLAIN_CXX) -c\ … … 132 165 $(abspath $(source)) 133 166 endef 167 endif # !USE_KOBJCACHE 134 168 135 169
Note:
See TracChangeset
for help on using the changeset viewer.