Changeset 192106 in webkit
- Timestamp:
- Nov 6, 2015, 8:58:31 AM (9 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r192097 r192106 1 2015-11-06 Daniel Bates <dabates@apple.com> 2 3 Teach Makefile to build LayoutTestRelay when building for iOS Simulator 4 https://bugs.webkit.org/show_bug.cgi?id=150849 5 6 Reviewed by Alexey Proskuryakov. 7 8 Add support for overriding the user-provided arguments SDKROOT and ARCHS 9 on a per Makefile basis. 10 11 * Makefile.shared: 12 1 13 2015-11-06 Philippe Normand <pnormand@igalia.com> 2 14 -
trunk/Makefile.shared
r191601 r192106 5 5 6 6 ifneq (,$(SDKROOT)) 7 XCODE_OPTIONS += SDKROOT=$(SDKROOT) 7 ifneq (,$(OVERRIDE_SDKROOT)) 8 ifneq (default,$(OVERRIDE_SDKROOT)) 9 XCODE_OPTIONS := $(XCODE_OPTIONS) SDKROOT=$(OVERRIDE_SDKROOT) 10 endif 11 OVERRIDE_SDKROOT = 12 else 13 XCODE_OPTIONS := $(XCODE_OPTIONS) SDKROOT=$(SDKROOT) 14 endif 8 15 endif 9 16 10 17 ifneq (,$(ARCHS)) 11 XCODE_OPTIONS += ARCHS="$(ARCHS)" 12 XCODE_OPTIONS += ONLY_ACTIVE_ARCH=NO 18 ifneq (,$(OVERRIDE_ARCHS)) 19 ifneq (default,$(OVERRIDE_ARCHS)) 20 XCODE_OPTIONS := $(XCODE_OPTIONS) ARCHS="$(OVERRIDE_ARCHS)" 21 XCODE_OPTIONS += ONLY_ACTIVE_ARCH=NO 22 endif 23 OVERRIDE_ARCHS = 24 else 25 XCODE_OPTIONS := $(XCODE_OPTIONS) ARCHS="$(ARCHS)" 26 XCODE_OPTIONS += ONLY_ACTIVE_ARCH=NO 27 endif 13 28 endif 14 29 -
trunk/Tools/ChangeLog
r192093 r192106 1 2015-11-06 Daniel Bates <dabates@apple.com> 2 3 Teach Makefile to build LayoutTestRelay when building for iOS Simulator 4 https://bugs.webkit.org/show_bug.cgi?id=150849 5 6 Reviewed by Alexey Proskuryakov. 7 8 Override the user-specified arguments SDKROOT and ARCHS to use the default SDK 9 and default ARCHS since LayoutTestRelay is a Mac command line tool. 10 11 * LayoutTestRelay/Makefile: Define OVERWRITE_SDKROOT and OVERWRITE_ARCHS. 12 1 13 2015-11-05 Nikos Andronikos <nikos.andronikos-webkit@cisra.canon.com.au> 2 14 -
trunk/Tools/LayoutTestRelay/Makefile
r192084 r192106 1 1 SCRIPTS_PATH = ../Scripts 2 2 3 OVERRIDE_ARCHS = default 4 OVERRIDE_SDKROOT = default 5 3 6 include ../../Makefile.shared
Note:
See TracChangeset
for help on using the changeset viewer.