Title: [160111] trunk/Source
Revision
160111
Author
aes...@apple.com
Date
2013-12-04 11:33:15 -0800 (Wed, 04 Dec 2013)

Log Message

[iOS] Build projects with $(ARCHS_STANDARD_32_64_BIT)
https://bugs.webkit.org/show_bug.cgi?id=125236

Reviewed by Sam Weinig.

$(ARCHS_STANDARD_32_64_BIT) is what we want for both device and simulator builds.

Source/_javascript_Core:

* Configurations/DebugRelease.xcconfig:

Source/WebCore:

* Configurations/DebugRelease.xcconfig:

Source/WebKit/mac:

* Configurations/DebugRelease.xcconfig:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (160110 => 160111)


--- trunk/Source/_javascript_Core/ChangeLog	2013-12-04 19:31:06 UTC (rev 160110)
+++ trunk/Source/_javascript_Core/ChangeLog	2013-12-04 19:33:15 UTC (rev 160111)
@@ -1,3 +1,14 @@
+2013-12-04  Andy Estes  <aes...@apple.com>
+
+        [iOS] Build projects with $(ARCHS_STANDARD_32_64_BIT)
+        https://bugs.webkit.org/show_bug.cgi?id=125236
+
+        Reviewed by Sam Weinig.
+
+        $(ARCHS_STANDARD_32_64_BIT) is what we want for both device and simulator builds.
+
+        * Configurations/DebugRelease.xcconfig:
+
 2013-12-03  Filip Pizlo  <fpi...@apple.com>
 
         Infer constant closure variables

Modified: trunk/Source/_javascript_Core/Configurations/DebugRelease.xcconfig (160110 => 160111)


--- trunk/Source/_javascript_Core/Configurations/DebugRelease.xcconfig	2013-12-04 19:31:06 UTC (rev 160110)
+++ trunk/Source/_javascript_Core/Configurations/DebugRelease.xcconfig	2013-12-04 19:33:15 UTC (rev 160111)
@@ -24,10 +24,7 @@
 #include "../../../../Internal/Configurations/UseInternalSDK.xcconfig"
 #include "Base.xcconfig"
 
-ARCHS = $(ARCHS_$(PLATFORM_NAME));
-ARCHS_iphoneos = $(ARCHS_STANDARD_32_64_BIT);
-ARCHS_iphonesimulator = $(ARCHS_STANDARD_32_64_BIT);
-ARCHS_macosx = $(ARCHS_STANDARD_32_64_BIT);
+ARCHS = $(ARCHS_STANDARD_32_64_BIT);
 
 _ONLY_ACTIVE_ARCH_ = YES;
 

Modified: trunk/Source/WebCore/ChangeLog (160110 => 160111)


--- trunk/Source/WebCore/ChangeLog	2013-12-04 19:31:06 UTC (rev 160110)
+++ trunk/Source/WebCore/ChangeLog	2013-12-04 19:33:15 UTC (rev 160111)
@@ -1,3 +1,14 @@
+2013-12-04  Andy Estes  <aes...@apple.com>
+
+        [iOS] Build projects with $(ARCHS_STANDARD_32_64_BIT)
+        https://bugs.webkit.org/show_bug.cgi?id=125236
+
+        Reviewed by Sam Weinig.
+
+        $(ARCHS_STANDARD_32_64_BIT) is what we want for both device and simulator builds.
+
+        * Configurations/DebugRelease.xcconfig:
+
 2013-12-04  Joseph Pecoraro  <pecor...@apple.com>
 
         Unreviewed Windows build fix attempt after r160099.

Modified: trunk/Source/WebCore/Configurations/DebugRelease.xcconfig (160110 => 160111)


--- trunk/Source/WebCore/Configurations/DebugRelease.xcconfig	2013-12-04 19:31:06 UTC (rev 160110)
+++ trunk/Source/WebCore/Configurations/DebugRelease.xcconfig	2013-12-04 19:33:15 UTC (rev 160111)
@@ -24,10 +24,7 @@
 #include "../../../../Internal/Configurations/UseInternalSDK.xcconfig"
 #include "Base.xcconfig"
 
-ARCHS = $(ARCHS_$(PLATFORM_NAME));
-ARCHS_iphoneos = $(ARCHS_STANDARD_32_BIT);
-ARCHS_iphonesimulator = $(ARCHS_STANDARD_32_BIT);
-ARCHS_macosx = $(ARCHS_STANDARD_32_64_BIT);
+ARCHS = $(ARCHS_STANDARD_32_64_BIT);
 
 _ONLY_ACTIVE_ARCH_ = YES;
 

Modified: trunk/Source/WebKit/mac/ChangeLog (160110 => 160111)


--- trunk/Source/WebKit/mac/ChangeLog	2013-12-04 19:31:06 UTC (rev 160110)
+++ trunk/Source/WebKit/mac/ChangeLog	2013-12-04 19:33:15 UTC (rev 160111)
@@ -1,3 +1,14 @@
+2013-12-04  Andy Estes  <aes...@apple.com>
+
+        [iOS] Build projects with $(ARCHS_STANDARD_32_64_BIT)
+        https://bugs.webkit.org/show_bug.cgi?id=125236
+
+        Reviewed by Sam Weinig.
+
+        $(ARCHS_STANDARD_32_64_BIT) is what we want for both device and simulator builds.
+
+        * Configurations/DebugRelease.xcconfig:
+
 2013-12-03  Joseph Pecoraro  <pecor...@apple.com>
 
         Web Inspector: Push Remote Inspector debugging connection management into _javascript_Core

Modified: trunk/Source/WebKit/mac/Configurations/DebugRelease.xcconfig (160110 => 160111)


--- trunk/Source/WebKit/mac/Configurations/DebugRelease.xcconfig	2013-12-04 19:31:06 UTC (rev 160110)
+++ trunk/Source/WebKit/mac/Configurations/DebugRelease.xcconfig	2013-12-04 19:33:15 UTC (rev 160111)
@@ -24,10 +24,7 @@
 #include "../../../../../Internal/Configurations/UseInternalSDK.xcconfig"
 #include "Base.xcconfig"
 
-ARCHS = $(ARCHS_$(PLATFORM_NAME));
-ARCHS_iphoneos = $(ARCHS_STANDARD_32_BIT);
-ARCHS_iphonesimulator = $(ARCHS_STANDARD_32_BIT);
-ARCHS_macosx = $(ARCHS_STANDARD_32_64_BIT);
+ARCHS = $(ARCHS_STANDARD_32_64_BIT);
 
 _ONLY_ACTIVE_ARCH_ = YES;
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to