Title: [267715] trunk
Revision
267715
Author
[email protected]
Date
2020-09-28 14:11:41 -0700 (Mon, 28 Sep 2020)

Log Message

Print message saying what project is being built
https://bugs.webkit.org/show_bug.cgi?id=216865
<rdar://problem/69408135>

Reviewed by Andy Estes.

XCBuild removes the progress messages saying which project/target is
being built. We can't show the target, but update the Makefiles to at
least show which project is being built.

* Makefile.shared:

Modified Paths

Diff

Modified: trunk/ChangeLog (267714 => 267715)


--- trunk/ChangeLog	2020-09-28 20:26:13 UTC (rev 267714)
+++ trunk/ChangeLog	2020-09-28 21:11:41 UTC (rev 267715)
@@ -1,3 +1,17 @@
+2020-09-28  Keith Rollin  <[email protected]>
+
+        Print message saying what project is being built
+        https://bugs.webkit.org/show_bug.cgi?id=216865
+        <rdar://problem/69408135>
+
+        Reviewed by Andy Estes.
+
+        XCBuild removes the progress messages saying which project/target is
+        being built. We can't show the target, but update the Makefiles to at
+        least show which project is being built.
+
+        * Makefile.shared:
+
 2020-09-27  Philippe Normand  <[email protected]>
 
         Add .ccls config file

Modified: trunk/Makefile.shared (267714 => 267715)


--- trunk/Makefile.shared	2020-09-28 20:26:13 UTC (rev 267714)
+++ trunk/Makefile.shared	2020-09-28 21:11:41 UTC (rev 267715)
@@ -99,6 +99,9 @@
 define invoke_xcode
 	( \
 		[[ -t 1 ]] && COLOR_DIAGNOSTICS_ARG="COLOR_DIAGNOSTICS=YES"; \
+		echo; \
+		echo "===== BUILDING $$(basename $(PATH_FROM_ROOT)) ====="; \
+		echo; \
 		$1 xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) $2 | $(OUTPUT_FILTER) && exit $${PIPESTATUS[0]} \
 	)
 endef
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to