make/common/NativeCompilation.gmk
changeset 49136 e9a335686df9
parent 49120 c04d813140dc
child 49146 02b821c5df93
equal deleted inserted replaced
49135:6d825d74f4d6 49136:e9a335686df9
   319           # No need to save exit code from compilation since pipefail is always active on
   319           # No need to save exit code from compilation since pipefail is always active on
   320           # Windows.
   320           # Windows.
   321 	  $$(call ExecuteWithLog, $$@, \
   321 	  $$(call ExecuteWithLog, $$@, \
   322 	      $$($1_$2_COMP) $$($1_$2_FLAGS) -showIncludes $$($1_$2_DEBUG_OUT_FLAGS) \
   322 	      $$($1_$2_COMP) $$($1_$2_FLAGS) -showIncludes $$($1_$2_DEBUG_OUT_FLAGS) \
   323 	          $(CC_OUT_OPTION)$$($1_$2_OBJ) $2) \
   323 	          $(CC_OUT_OPTION)$$($1_$2_OBJ) $2) \
   324 	      | $(GREP) -v -e "^Note: including file:" \
   324 	      | $(TR) -d '\r' | $(GREP) -v -e "^Note: including file:" \
   325 	          -e "^$(notdir $2)$$$$" || test "$$$$?" = "1" ; \
   325 	          -e "^$(notdir $2)$$$$" || test "$$$$?" = "1" ; \
   326 	  $(ECHO) $$@: \\ > $$($1_$2_DEP) ; \
   326 	  $(ECHO) $$@: \\ > $$($1_$2_DEP) ; \
   327 	  $(SED) $(WINDOWS_SHOWINCLUDE_SED_PATTERN) $$($1_$2_OBJ).log \
   327 	  $(SED) $(WINDOWS_SHOWINCLUDE_SED_PATTERN) $$($1_$2_OBJ).log \
   328 	      | $(SORT) -u >> $$($1_$2_DEP) ; \
   328 	      | $(SORT) -u >> $$($1_$2_DEP) ; \
   329 	  $(SED) $(DEPENDENCY_TARGET_SED_PATTERN) $$($1_$2_DEP) > $$($1_$2_DEP_TARGETS)
   329 	  $(SED) $(DEPENDENCY_TARGET_SED_PATTERN) $$($1_$2_DEP) > $$($1_$2_DEP_TARGETS)