Changeset 2774


Ignore:
Timestamp:
Feb 3, 2015, 8:56:24 PM (10 years ago)
Author:
bird
Message:

kBuild/tools/*: Added $(QUIET) where it was missing before commands.

Location:
trunk/kBuild/tools
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • trunk/kBuild/tools/GCC3.kmk

    r2541 r2774  
    275275                $(call TOOL_GCC3_LD_MAP,$(outbase).map)
    276276 ifeq ($(ld_debug),split)
    277         $(TOOL_GCC3_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
    278         $(CHMOD) a-x $(outbase).debug
    279         $(TOOL_GCC3_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
     277        $(QUIET)$(TOOL_GCC3_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
     278        $(QUIET)$(CHMOD) a-x $(outbase).debug
     279        $(QUIET)$(TOOL_GCC3_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
    280280 endif
    281281endef
     
    311311                $(call TOOL_GCC3_LD_MAP,$(outbase).map)
    312312 ifeq ($(ld_debug),split)
    313         $(TOOL_GCC3_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
    314         $(CHMOD) a-x $(outbase).debug
    315         $(TOOL_GCC3_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
     313        $(QUIET)$(TOOL_GCC3_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
     314        $(QUIET)$(CHMOD) a-x $(outbase).debug
     315        $(QUIET)$(TOOL_GCC3_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
    316316 endif
    317317endef
     
    345345                $(call TOOL_GCC3_LD_SYSMOD_MAP,$(outbase).map)
    346346 ifeq ($(ld_debug),split)
    347         $(TOOL_GCC3_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
    348         $(CHMOD) a-x $(outbase).debug
    349         $(TOOL_GCC3_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
     347        $(QUIET)$(TOOL_GCC3_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
     348        $(QUIET)$(CHMOD) a-x $(outbase).debug
     349        $(QUIET)$(TOOL_GCC3_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
    350350 endif
    351351endef
  • trunk/kBuild/tools/GCC32.kmk

    r2541 r2774  
    269269                $(call TOOL_GCC32_LD_MAP,$(outbase).map)
    270270 ifeq ($(ld_debug),split)
    271         $(TOOL_GCC32_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
    272         $(CHMOD) a-x $(outbase).debug
    273         $(TOOL_GCC32_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
     271        $(QUIET)$(TOOL_GCC32_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
     272        $(QUIET)$(CHMOD) a-x $(outbase).debug
     273        $(QUIET)$(TOOL_GCC32_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
    274274 endif
    275275endef
     
    304304                $(call TOOL_GCC32_LD_MAP,$(outbase).map)
    305305 ifeq ($(ld_debug),split)
    306         $(TOOL_GCC32_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
    307         $(CHMOD) a-x $(outbase).debug
    308         $(TOOL_GCC32_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
     306        $(QUIET)$(TOOL_GCC32_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
     307        $(QUIET)$(CHMOD) a-x $(outbase).debug
     308        $(QUIET)$(TOOL_GCC32_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
    309309 endif
    310310endef
     
    338338                $(call TOOL_GCC32_LD_SYSMOD_MAP,$(outbase).map)
    339339 ifeq ($(ld_debug),split)
    340         $(TOOL_GCC32_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
    341         $(CHMOD) a-x $(outbase).debug
    342         $(TOOL_GCC32_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
     340        $(QUIET)$(TOOL_GCC32_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
     341        $(QUIET)$(CHMOD) a-x $(outbase).debug
     342        $(QUIET)$(TOOL_GCC32_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
    343343 endif
    344344endef
  • trunk/kBuild/tools/GCC3OMF.kmk

    r2545 r2774  
    222222                 $(NL)$(TAB)$(QUIET)$(RM) -f $(outbase).rsp)
    223223        $(QUIET)$(APPEND) -n $(outbase).rsp $(flags) $(out) $(objs) $(filter-out %.def %.imp,$(othersrc))
    224         $(TOOL_GCC3OMF_AR) @$(outbase).rsp
     224        $(QUIET)$(TOOL_GCC3OMF_AR) @$(outbase).rsp
    225225endef
    226226
     
    283283                $(foreach lib,$(libs), $(if $(findstring $(lib),$(subst /,x,$(lib))), -l$(patsubst lib%,%,$(lib)), $(lib)))\
    284284                -Zmap=$(outbase).map
    285         $(TOOL_GCC3OMF_LD) @$(outbase).rsp
     285        $(QUIET)$(TOOL_GCC3OMF_LD) @$(outbase).rsp
    286286endef
    287287
  • trunk/kBuild/tools/GCC64.kmk

    r2541 r2774  
    264264                $(call TOOL_GCC64_LD_MAP,$(outbase).map)
    265265 ifeq ($(ld_debug),split)
    266         $(TOOL_GCC64_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
    267         $(CHMOD) a-x $(outbase).debug
    268         $(TOOL_GCC64_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
     266        $(QUIET)$(TOOL_GCC64_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
     267        $(QUIET)$(CHMOD) a-x $(outbase).debug
     268        $(QUIET)$(TOOL_GCC64_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
    269269 endif
    270270endef
     
    298298                $(call TOOL_GCC64_LD_MAP,$(outbase).map)
    299299 ifeq ($(ld_debug),split)
    300         $(TOOL_GCC64_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
    301         $(CHMOD) a-x $(outbase).debug
    302         $(TOOL_GCC64_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
     300        $(QUIET)$(TOOL_GCC64_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
     301        $(QUIET)$(CHMOD) a-x $(outbase).debug
     302        $(QUIET)$(TOOL_GCC64_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
    303303 endif
    304304endef
     
    330330                $(call TOOL_GCC64_LD_SYSMOD_MAP,$(outbase).map)
    331331 ifeq ($(ld_debug),split)
    332         $(TOOL_GCC64_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
    333         $(CHMOD) a-x $(outbase).debug
    334         $(TOOL_GCC64_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
     332        $(QUIET)$(TOOL_GCC64_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
     333        $(QUIET)$(CHMOD) a-x $(outbase).debug
     334        $(QUIET)$(TOOL_GCC64_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
    335335 endif
    336336endef
  • trunk/kBuild/tools/GXX3.kmk

    r2541 r2774  
    275275                $(call TOOL_GXX3_LD_MAP,$(outbase).map)
    276276 ifeq ($(ld_debug),split)
    277         $(TOOL_GXX3_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
    278         $(CHMOD) a-x $(outbase).debug
    279         $(TOOL_GXX3_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
     277        $(QUIET)$(TOOL_GXX3_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
     278        $(QUIET)$(CHMOD) a-x $(outbase).debug
     279        $(QUIET)$(TOOL_GXX3_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
    280280 endif
    281281endef
     
    311311                $(call TOOL_GXX3_LD_MAP,$(outbase).map)
    312312 ifeq ($(ld_debug),split)
    313         $(TOOL_GXX3_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
    314         $(CHMOD) a-x $(outbase).debug
    315         $(TOOL_GXX3_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
     313        $(QUIET)$(TOOL_GXX3_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
     314        $(QUIET)$(CHMOD) a-x $(outbase).debug
     315        $(QUIET)$(TOOL_GXX3_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
    316316 endif
    317317endef
     
    345345                $(call TOOL_GXX3_LD_SYSMOD_MAP,$(outbase).map)
    346346 ifeq ($(ld_debug),split)
    347         $(TOOL_GXX3_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
    348         $(CHMOD) a-x $(outbase).debug
    349         $(TOOL_GXX3_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
     347        $(QUIET)$(TOOL_GXX3_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
     348        $(QUIET)$(CHMOD) a-x $(outbase).debug
     349        $(QUIET)$(TOOL_GXX3_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
    350350 endif
    351351endef
  • trunk/kBuild/tools/GXX32.kmk

    r2541 r2774  
    268268                $(call TOOL_GXX32_LD_MAP,$(outbase).map)
    269269 ifeq ($(ld_debug),split)
    270         $(TOOL_GXX32_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
    271         $(CHMOD) a-x $(outbase).debug
    272         $(TOOL_GXX32_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
     270        $(QUIET)$(TOOL_GXX32_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
     271        $(QUIET)$(CHMOD) a-x $(outbase).debug
     272        $(QUIET)$(TOOL_GXX32_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
    273273 endif
    274274endef
     
    303303                $(call TOOL_GXX32_LD_MAP,$(outbase).map)
    304304 ifeq ($(ld_debug),split)
    305         $(TOOL_GXX32_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
    306         $(CHMOD) a-x $(outbase).debug
    307         $(TOOL_GXX32_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
     305        $(QUIET)$(TOOL_GXX32_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
     306        $(QUIET)$(CHMOD) a-x $(outbase).debug
     307        $(QUIET)$(TOOL_GXX32_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
    308308 endif
    309309endef
     
    337337                $(call TOOL_GXX32_LD_SYSMOD_MAP,$(outbase).map)
    338338 ifeq ($(ld_debug),split)
    339         $(TOOL_GXX32_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
    340         $(CHMOD) a-x $(outbase).debug
    341         $(TOOL_GXX32_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
     339        $(QUIET)$(TOOL_GXX32_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
     340        $(QUIET)$(CHMOD) a-x $(outbase).debug
     341        $(QUIET)$(TOOL_GXX32_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
    342342 endif
    343343endef
  • trunk/kBuild/tools/GXX3OMF.kmk

    r2545 r2774  
    222222                 $(NL)$(TAB)$(QUIET)$(RM) -f $(outbase).rsp)
    223223        $(QUIET)$(APPEND) -n $(outbase).rsp $(flags) $(out) $(objs) $(filter-out %.def %.imp,$(othersrc))
    224         $(TOOL_GXX3OMF_AR) @$(outbase).rsp
     224        $(QUIET)$(TOOL_GXX3OMF_AR) @$(outbase).rsp
    225225endef
    226226
     
    283283                $(foreach lib,$(libs), $(if $(findstring $(lib),$(subst /,x,$(lib))), -l$(patsubst lib%,%,$(lib)), $(lib)))\
    284284                -Zmap=$(outbase).map
    285         $(TOOL_GXX3OMF_LD) @$(outbase).rsp
     285        $(QUIET)$(TOOL_GXX3OMF_LD) @$(outbase).rsp
    286286endef
    287287
  • trunk/kBuild/tools/GXX64.kmk

    r2541 r2774  
    264264                $(call TOOL_GXX64_LD_MAP,$(outbase).map)
    265265 ifeq ($(ld_debug),split)
    266         $(TOOL_GXX64_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
    267         $(CHMOD) a-x $(outbase).debug
    268         $(TOOL_GXX64_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
     266        $(QUIET)$(TOOL_GXX64_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
     267        $(QUIET)$(CHMOD) a-x $(outbase).debug
     268        $(QUIET)$(TOOL_GXX64_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
    269269 endif
    270270endef
     
    298298                $(call TOOL_GXX64_LD_MAP,$(outbase).map)
    299299 ifeq ($(ld_debug),split)
    300         $(TOOL_GXX64_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
    301         $(CHMOD) a-x $(outbase).debug
    302         $(TOOL_GXX64_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
     300        $(QUIET)$(TOOL_GXX64_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
     301        $(QUIET)$(CHMOD) a-x $(outbase).debug
     302        $(QUIET)$(TOOL_GXX64_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
    303303 endif
    304304endef
     
    330330                $(call TOOL_GXX64_LD_SYSMOD_MAP,$(outbase).map)
    331331 ifeq ($(ld_debug),split)
    332         $(TOOL_GXX64_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
    333         $(CHMOD) a-x $(outbase).debug
    334         $(TOOL_GXX64_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
     332        $(QUIET)$(TOOL_GXX64_OBJCOPY) --only-keep-debug $(out) $(outbase).debug
     333        $(QUIET)$(CHMOD) a-x $(outbase).debug
     334        $(QUIET)$(TOOL_GXX64_OBJCOPY) --strip-debug --strip-unneeded --add-gnu-debuglink=$(outbase).debug $(out)
    335335 endif
    336336endef
  • trunk/kBuild/tools/JWASM.kmk

    r2750 r2774  
    5353TOOL_JWASM_COMPILE_AS_DEPORD =
    5454define TOOL_JWASM_COMPILE_AS_CMDS
    55         $(TOOL_JWASM_AS) -c \
     55        $(QUIET)$(TOOL_JWASM_AS) -c \
    5656                        $(strip $(flags)) \
    5757                        $(addprefix -D,$(defs)) \
Note: See TracChangeset for help on using the changeset viewer.