Changeset 178241 in webkit


Ignore:
Timestamp:
Jan 10, 2015 1:57:32 PM (9 years ago)
Author:
mitz@apple.com
Message:

[Xcode, iOS] Files are recompiled when alternating between using make and the Xcode IDE
https://bugs.webkit.org/show_bug.cgi?id=140339

Reviewed by Mark Rowe.

  • Makefile.shared: Run xcodebuild with the same PATH with which the Xcode IDE runs. This

prevents unnecessary rebuilding due to PATH differences.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r178095 r178241  
     12015-01-10  Dan Bernstein  <mitz@apple.com>
     2
     3        [Xcode, iOS] Files are recompiled when alternating between using make and the Xcode IDE
     4        https://bugs.webkit.org/show_bug.cgi?id=140339
     5
     6        Reviewed by Mark Rowe.
     7
     8        * Makefile.shared: Run xcodebuild with the same PATH with which the Xcode IDE runs. This
     9        prevents unnecessary rebuilding due to PATH differences.
     10
    1112015-01-07  Gwang Yoon Hwang  <yoon@igalia.com>
    212
  • trunk/Makefile.shared

    r177703 r178241  
    3636export DSYMUTIL_NUM_THREADS = $(shell sysctl -n hw.activecpu)
    3737
     38# Run xcodebuild with the same PATH with which the Xcode IDE runs, to mitigate unnecessary rebuilds due to PATH differences.
     39# See <rdar://problem/16466196>.
     40export PATH = $(shell getconf PATH)
     41
    3842all: set_asan_configuration
    3943        ( $(SET_COLOR_DIAGNOSTICS_ARG); xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) | $(OUTPUT_FILTER) && exit $${PIPESTATUS[0]} )
Note: See TracChangeset for help on using the changeset viewer.