Skip to content

Commit

Permalink
[Xcode, iOS] Files are recompiled when alternating between using make…
Browse files Browse the repository at this point in the history
… 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.



git-svn-id: http://svn.webkit.org/repository/webkit/trunk@178241 268f45cc-cd09-0410-ab3c-d52691b4dbfc
  • Loading branch information
mitz@apple.com committed Jan 10, 2015
1 parent 1ba3160 commit ffd5821
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
10 changes: 10 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
2015-01-10 Dan Bernstein <mitz@apple.com>

[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.

2015-01-07 Gwang Yoon Hwang <yoon@igalia.com>

[GTK][ThreadedCompositor] Add support for threaded compositor.
Expand Down
4 changes: 4 additions & 0 deletions Makefile.shared
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ endif

export DSYMUTIL_NUM_THREADS = $(shell sysctl -n hw.activecpu)

# Run xcodebuild with the same PATH with which the Xcode IDE runs, to mitigate unnecessary rebuilds due to PATH differences.
# See <rdar://problem/16466196>.
export PATH = $(shell getconf PATH)

all: set_asan_configuration
( $(SET_COLOR_DIAGNOSTICS_ARG); xcodebuild $(OTHER_OPTIONS) $(XCODE_OPTIONS) | $(OUTPUT_FILTER) && exit $${PIPESTATUS[0]} )

Expand Down

0 comments on commit ffd5821

Please sign in to comment.