Title: [160097] trunk/Source/WebKit2
Revision
160097
Author
[email protected]
Date
2013-12-04 10:00:22 -0800 (Wed, 04 Dec 2013)

Log Message

Use All-iOS target when building WK2 on iOS
<rdar://problem/15574494>

Reviewed by David Kilzer.

* Makefile:
Add -target All-iOS to OTHER_OPTIONS if iphoneos or iphonesimulator
is in the SDKROOT make option.

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (160096 => 160097)


--- trunk/Source/WebKit2/ChangeLog	2013-12-04 17:49:30 UTC (rev 160096)
+++ trunk/Source/WebKit2/ChangeLog	2013-12-04 18:00:22 UTC (rev 160097)
@@ -1,3 +1,14 @@
+2013-12-04  David Farler  <[email protected]>
+
+        Use All-iOS target when building WK2 on iOS
+        <rdar://problem/15574494>
+
+        Reviewed by David Kilzer.
+
+        * Makefile:
+        Add -target All-iOS to OTHER_OPTIONS if iphoneos or iphonesimulator
+        is in the SDKROOT make option.
+
 2013-12-04  Nick Diego Yamane  <[email protected]>
 
         [EFL][WK2] Fix build after API::Client changes

Modified: trunk/Source/WebKit2/Makefile (160096 => 160097)


--- trunk/Source/WebKit2/Makefile	2013-12-04 17:49:30 UTC (rev 160096)
+++ trunk/Source/WebKit2/Makefile	2013-12-04 18:00:22 UTC (rev 160097)
@@ -4,6 +4,9 @@
 BUILD_WEBKIT2 = $(shell (( $(OSX_VERSION) >= 6 )) && echo "YES" )
 
 ifeq "$(BUILD_WEBKIT2)" "YES"
+ifneq (,$(filter iphoneos iphonesimulator,$(foreach sdk,iphoneos iphonesimulator,$(findstring $(sdk),$(SDKROOT)))))
+	OTHER_OPTIONS += -target All-iOS
+endif
 
 include ../Makefile.shared
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to