Changeset 203348 in webkit
- Timestamp:
- Jul 18, 2016, 9:17:52 AM (9 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r203344 r203348 1 2016-07-18 Alexey Proskuryakov <ap@apple.com> 2 3 "make ARCHS=x86_64" fails to build 4 https://bugs.webkit.org/show_bug.cgi?id=159867 5 6 Reviewed by Dan Bernstein. 7 8 * Makefile.shared: Override VALID_ARCHS when ARCHS is set, so that even projects 9 that normally customize VALID_ARCHS wouldn't fail to build. 10 1 11 2016-07-18 Carlos Garcia Campos <cgarcia@igalia.com> 2 12 -
trunk/Makefile.shared
r202798 r203348 25 25 XCODE_OPTIONS := $(XCODE_OPTIONS) ARCHS="$(ARCHS)" 26 26 XCODE_OPTIONS += ONLY_ACTIVE_ARCH=NO 27 # Make Plugin.32 and Plugin.64 build even when they can't be built for the specified architecture. 28 ifeq ($(ARCHS),i386) 29 XCODE_OPTIONS += VALID_ARCHS=i386 30 endif 31 ifeq ($(ARCHS),x86_64) 32 XCODE_OPTIONS += VALID_ARCHS=x86_64 33 endif 27 34 endif 28 35 endif
Note:
See TracChangeset
for help on using the changeset viewer.