Changeset 161772 in webkit


Ignore:
Timestamp:
Jan 11, 2014 11:48:08 AM (10 years ago)
Author:
mitz@apple.com
Message:

[Mac] xcodebuild color output is suppressed when using make
https://bugs.webkit.org/show_bug.cgi?id=126815

Reviewed by Anders Carlsson.

WHen using make, xcodebuild’s output is piped through a filter, which causes it not to
format its output with color and emphasis.

  • Makefile.shared: Pass COLOR_DIAGNOSTICS=YES to xcodebuild to force color output on. Due to

xcodebuild limitations, this restores some of the formatting, but not all of it.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r161699 r161772  
     12014-01-11  Dan Bernstein  <mitz@apple.com>
     2
     3        [Mac] xcodebuild color output is suppressed when using make
     4        https://bugs.webkit.org/show_bug.cgi?id=126815
     5
     6        Reviewed by Anders Carlsson.
     7
     8        WHen using make, xcodebuild’s output is piped through a filter, which causes it not to
     9        format its output with color and emphasis.
     10
     11        * Makefile.shared: Pass COLOR_DIAGNOSTICS=YES to xcodebuild to force color output on. Due to
     12        xcodebuild limitations, this restores some of the formatting, but not all of it.
     13
    1142014-01-10  Benjamin Poulain  <bpoulain@apple.com>
    215
  • trunk/Makefile.shared

    r142207 r161772  
    11SCRIPTS_PATH ?= ../Tools/Scripts
    22
    3 XCODE_OPTIONS = `perl -I$(SCRIPTS_PATH) -Mwebkitdirs -e 'print XcodeOptionString()' -- $(BUILD_WEBKIT_OPTIONS)` $(ARGS)
     3XCODE_OPTIONS = `perl -I$(SCRIPTS_PATH) -Mwebkitdirs -e 'print XcodeOptionString()' -- $(BUILD_WEBKIT_OPTIONS)` COLOR_DIAGNOSTICS=YES $(ARGS)
    44
    55ifneq (,$(SDKROOT))
Note: See TracChangeset for help on using the changeset viewer.