Changeset 696 for trunk/kBuild/tools/GCC3.kmk
- Timestamp:
- Dec 10, 2006, 8:16:02 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/tools/GCC3.kmk
r667 r696 106 106 TOOL_GCC3_COMPILE_C_DEPORD = 107 107 define TOOL_GCC3_COMPILE_C_CMDS 108 $( TOOL_GCC3_CC) -c\108 $(QUIET)$(TOOL_GCC3_CC) -c\ 109 109 $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\ 110 110 -Wp,-MD,$(dep) -Wp,-MT,$(obj) -Wp,-MP\ … … 130 130 TOOL_GCC3_COMPILE_CXX_DEPORD = 131 131 define TOOL_GCC3_COMPILE_CXX_CMDS 132 $( TOOL_GCC3_CXX) -c\132 $(QUIET)$(TOOL_GCC3_CXX) -c\ 133 133 $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\ 134 134 -Wp,-MD,$(dep) -Wp,-MT,$(obj) -Wp,-MP\ … … 155 155 TOOL_GCC3_COMPILE_AS_DEPORD = 156 156 define TOOL_GCC3_COMPILE_AS_CMDS 157 $( TOOL_GCC3_AS) -c\157 $(QUIET)$(TOOL_GCC3_AS) -c\ 158 158 $(flags) $(addprefix -I, $(incs)) $(addprefix -D, $(defs))\ 159 159 -Wp,-MD,$(dep) -Wp,-MT,$(obj) -Wp,-MP\ … … 176 176 TOOL_GCC3_LINK_LIBRARY_DEPORD = 177 177 define TOOL_GCC3_LINK_LIBRARY_CMDS 178 $( APPEND) $(out).ar-script "CREATE $(out)"178 $(QUIET)$(APPEND) $(out).ar-script "CREATE $(out)" 179 179 $(foreach o, $(objs)\ 180 ,$(NL)$(TAB)$( APPEND) $(out).ar-script "ADDMOD $(o)")180 ,$(NL)$(TAB)$(QUIET)$(APPEND) $(out).ar-script "ADDMOD $(o)") 181 181 $(foreach srclib, $(filter %.a %.lib,$(othersrc))\ 182 ,$(NL)$(TAB)$( APPEND) $(out).ar-script "ADDLIB $(srclib)")182 ,$(NL)$(TAB)$(QUIET)$(APPEND) $(out).ar-script "ADDLIB $(srclib)") 183 183 $(if $(filter %.def %.imp,$(othersrc))\ 184 184 ,$(TOOL_GCC3_AR_IMP) -o $(outbase).imp.a $(filter %.def %.imp,$(othersrc))\ 185 $(NL)$(TAB)$( APPEND) $(out).ar-script "ADDLIB $(outbase).imp.a")186 $( APPEND) $(out).ar-script "SAVE"187 $( APPEND) $(out).ar-script "END"188 $( TOOL_GCC3_AR) -M < $(out).ar-script185 $(NL)$(TAB)$(QUIET)$(APPEND) $(out).ar-script "ADDLIB $(outbase).imp.a") 186 $(QUIET)$(APPEND) $(out).ar-script "SAVE" 187 $(QUIET)$(APPEND) $(out).ar-script "END" 188 $(QUIET)$(TOOL_GCC3_AR) -M < $(out).ar-script 189 189 endef 190 190 … … 208 208 TOOL_GCC3_LINK_PROGRAM_DEPORD = 209 209 define TOOL_GCC3_LINK_PROGRAM_CMDS 210 $( TOOL_GCC3_LD) $(flags) -o $(out) $(objs)\210 $(QUIET)$(TOOL_GCC3_LD) $(flags) -o $(out) $(objs)\ 211 211 $(filter %.def, $(othersrc))\ 212 212 $(foreach p,$(libpath), -L$(p))\ … … 234 234 TOOL_GCC3_LINK_DLL_DEPORD = 235 235 define TOOL_GCC3_LINK_DLL_CMDS 236 $( TOOL_GCC3_LD) $(TOOL_GCC3_LDFLAGS.dll) $(flags) -o $(out)\236 $(QUIET)$(TOOL_GCC3_LD) $(TOOL_GCC3_LDFLAGS.dll) $(flags) -o $(out)\ 237 237 $(if $(filter-out win32 os2, $(BUILD_TARGET)),$(call TOOL_GCC3_LD_SONAME,$(target),$(out)))\ 238 238 $(objs)\ … … 262 262 TOOL_GCC3_LINK_SYSMOD_DEPORD = 263 263 define TOOL_GCC3_LINK_SYSMOD_CMDS 264 $( TOOL_GCC3_LD_SYSMOD) $(TOOL_GCC3_LDFLAGS.sysmod) $(flags) -o $(out) $(objs)\264 $(QUIET)$(TOOL_GCC3_LD_SYSMOD) $(TOOL_GCC3_LDFLAGS.sysmod) $(flags) -o $(out) $(objs)\ 265 265 $(filter %.def, $(othersrc))\ 266 266 $(foreach p,$(libpath), -L$(p))\
Note:
See TracChangeset
for help on using the changeset viewer.