Diff
Modified: trunk/Source/_javascript_Core/ChangeLog (159668 => 159669)
--- trunk/Source/_javascript_Core/ChangeLog 2013-11-22 03:01:55 UTC (rev 159668)
+++ trunk/Source/_javascript_Core/ChangeLog 2013-11-22 03:04:12 UTC (rev 159669)
@@ -1,5 +1,15 @@
2013-11-21 Mark Rowe <[email protected]>
+ <https://webkit.org/b/124702> Stop overriding VALID_ARCHS.
+
+ All modern versions of Xcode set it appropriately for our needs.
+
+ Reviewed by Alexey Proskuryakov.
+
+ * Configurations/Base.xcconfig:
+
+2013-11-21 Mark Rowe <[email protected]>
+
<https://webkit.org/b/124701> Fix an error in a few Xcode configuration setting files.
Reviewed by Alexey Proskuryakov.
Modified: trunk/Source/_javascript_Core/Configurations/Base.xcconfig (159668 => 159669)
--- trunk/Source/_javascript_Core/Configurations/Base.xcconfig 2013-11-22 03:01:55 UTC (rev 159668)
+++ trunk/Source/_javascript_Core/Configurations/Base.xcconfig 2013-11-22 03:04:12 UTC (rev 159669)
@@ -76,10 +76,6 @@
GCC_WARN_UNUSED_VARIABLE = YES;
LINKER_DISPLAYS_MANGLED_NAMES = YES;
PREBINDING = NO;
-VALID_ARCHS = $(VALID_ARCHS_$(PLATFORM_NAME));
-VALID_ARCHS_iphoneos = $(ARCHS_STANDARD_32_64_BIT);
-VALID_ARCHS_iphonesimulator = $(ARCHS_STANDARD_32_64_BIT);
-VALID_ARCHS_macosx = i386 ppc x86_64 ppc64;
WARNING_CFLAGS = -Wall -Wextra -Wcast-qual -Wchar-subscripts -Wextra-tokens -Wformat=2 -Winit-self -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wpointer-arith -Wredundant-decls -Wundef -Wwrite-strings -Wexit-time-destructors -Wglobal-constructors -Wtautological-compare;
HEADER_SEARCH_PATHS = . icu "${BUILT_PRODUCTS_DIR}/usr/local/include" $(HEADER_SEARCH_PATHS);
Modified: trunk/Source/WebCore/ChangeLog (159668 => 159669)
--- trunk/Source/WebCore/ChangeLog 2013-11-22 03:01:55 UTC (rev 159668)
+++ trunk/Source/WebCore/ChangeLog 2013-11-22 03:04:12 UTC (rev 159669)
@@ -1,3 +1,13 @@
+2013-11-21 Mark Rowe <[email protected]>
+
+ <https://webkit.org/b/124702> Stop overriding VALID_ARCHS.
+
+ All modern versions of Xcode set it appropriately for our needs.
+
+ Reviewed by Alexey Proskuryakov.
+
+ * Configurations/Base.xcconfig:
+
2013-11-21 Gwang Yoon Hwang <[email protected]>
[GTK] Unreviewed buildfix after r159614 and r159656.
Modified: trunk/Source/WebCore/Configurations/Base.xcconfig (159668 => 159669)
--- trunk/Source/WebCore/Configurations/Base.xcconfig 2013-11-22 03:01:55 UTC (rev 159668)
+++ trunk/Source/WebCore/Configurations/Base.xcconfig 2013-11-22 03:04:12 UTC (rev 159669)
@@ -70,10 +70,6 @@
GCC_WARN_UNUSED_VARIABLE = YES;
LINKER_DISPLAYS_MANGLED_NAMES = YES;
PREBINDING = NO;
-VALID_ARCHS = $(VALID_ARCHS_$(PLATFORM_NAME));
-VALID_ARCHS_iphoneos = $(ARCHS_STANDARD_32_BIT);
-VALID_ARCHS_iphonesimulator = $(ARCHS_STANDARD_32_BIT);
-VALID_ARCHS_macosx = i386 ppc x86_64 ppc64;
WARNING_CFLAGS = -Wall -Wextra -Wcast-qual -Wchar-subscripts -Wextra-tokens -Wformat=2 -Winit-self -Wmissing-format-attribute -Wmissing-noreturn -Wpacked -Wpointer-arith -Wredundant-decls -Wundef -Wwrite-strings -Wexit-time-destructors -Wglobal-constructors -Wtautological-compare;
TARGET_MAC_OS_X_VERSION_MAJOR = $(MAC_OS_X_VERSION_MAJOR);
Modified: trunk/Source/WebInspectorUI/ChangeLog (159668 => 159669)
--- trunk/Source/WebInspectorUI/ChangeLog 2013-11-22 03:01:55 UTC (rev 159668)
+++ trunk/Source/WebInspectorUI/ChangeLog 2013-11-22 03:04:12 UTC (rev 159669)
@@ -1,3 +1,13 @@
+2013-11-21 Mark Rowe <[email protected]>
+
+ <https://webkit.org/b/124702> Stop overriding VALID_ARCHS.
+
+ All modern versions of Xcode set it appropriately for our needs.
+
+ Reviewed by Alexey Proskuryakov.
+
+ * Configurations/Base.xcconfig:
+
2013-11-19 Antoine Quint <[email protected]>
Web Inspector: layer info sidebar should convert to MB for very large layers
Modified: trunk/Source/WebInspectorUI/Configurations/Base.xcconfig (159668 => 159669)
--- trunk/Source/WebInspectorUI/Configurations/Base.xcconfig 2013-11-22 03:01:55 UTC (rev 159668)
+++ trunk/Source/WebInspectorUI/Configurations/Base.xcconfig 2013-11-22 03:04:12 UTC (rev 159669)
@@ -44,7 +44,6 @@
SDKROOT = macosx.internal;
-VALID_ARCHS = $(ARCHS_STANDARD_32_64_BIT);
WEBKIT_UMBRELLA_FRAMEWORKS_DIR = $(WEBKIT_UMBRELLA_FRAMEWORKS_DIR_$(USE_STAGING_INSTALL_PATH));
WEBKIT_UMBRELLA_FRAMEWORKS_DIR_ = $(WEBKIT_UMBRELLA_FRAMEWORKS_DIR_NO);
Modified: trunk/Source/WebKit/mac/ChangeLog (159668 => 159669)
--- trunk/Source/WebKit/mac/ChangeLog 2013-11-22 03:01:55 UTC (rev 159668)
+++ trunk/Source/WebKit/mac/ChangeLog 2013-11-22 03:04:12 UTC (rev 159669)
@@ -1,5 +1,15 @@
2013-11-21 Mark Rowe <[email protected]>
+ <https://webkit.org/b/124702> Stop overriding VALID_ARCHS.
+
+ All modern versions of Xcode set it appropriately for our needs.
+
+ Reviewed by Alexey Proskuryakov.
+
+ * Configurations/Base.xcconfig:
+
+2013-11-21 Mark Rowe <[email protected]>
+
<https://webkit.org/b/124701> Fix an error in a few Xcode configuration setting files.
Reviewed by Alexey Proskuryakov.
Modified: trunk/Source/WebKit/mac/Configurations/Base.xcconfig (159668 => 159669)
--- trunk/Source/WebKit/mac/Configurations/Base.xcconfig 2013-11-22 03:01:55 UTC (rev 159668)
+++ trunk/Source/WebKit/mac/Configurations/Base.xcconfig 2013-11-22 03:04:12 UTC (rev 159669)
@@ -66,10 +66,6 @@
LINKER_DISPLAYS_MANGLED_NAMES = YES;
OTHER_MIGFLAGS = -F$(BUILT_PRODUCTS_DIR);
PREBINDING = NO;
-VALID_ARCHS = $(VALID_ARCHS_$(PLATFORM_NAME));
-VALID_ARCHS_iphoneos = $(ARCHS_STANDARD_32_BIT);
-VALID_ARCHS_iphonesimulator = $(ARCHS_STANDARD_32_BIT);
-VALID_ARCHS_macosx = i386 ppc x86_64 ppc64;
WARNING_CFLAGS = -Wall -Wextra -Wchar-subscripts -Wextra-tokens -Wformat-security -Winit-self -Wmissing-format-attribute -Wmissing-noreturn -Wno-unused-parameter -Wpacked -Wpointer-arith -Wredundant-decls -Wundef -Wwrite-strings -Wexit-time-destructors -Wglobal-constructors -Wtautological-compare;
TARGET_MAC_OS_X_VERSION_MAJOR = $(MAC_OS_X_VERSION_MAJOR);
Modified: trunk/Source/WebKit2/ChangeLog (159668 => 159669)
--- trunk/Source/WebKit2/ChangeLog 2013-11-22 03:01:55 UTC (rev 159668)
+++ trunk/Source/WebKit2/ChangeLog 2013-11-22 03:04:12 UTC (rev 159669)
@@ -1,3 +1,13 @@
+2013-11-21 Mark Rowe <[email protected]>
+
+ <https://webkit.org/b/124702> Stop overriding VALID_ARCHS.
+
+ All modern versions of Xcode set it appropriately for our needs.
+
+ Reviewed by Alexey Proskuryakov.
+
+ * Configurations/Base.xcconfig:
+
2013-11-21 Gwang Yoon Hwang <[email protected]>
[GTK] Unreviewed buildfix after r159614 and r159656.
Modified: trunk/Source/WebKit2/Configurations/Base.xcconfig (159668 => 159669)
--- trunk/Source/WebKit2/Configurations/Base.xcconfig 2013-11-22 03:01:55 UTC (rev 159668)
+++ trunk/Source/WebKit2/Configurations/Base.xcconfig 2013-11-22 03:04:12 UTC (rev 159669)
@@ -63,7 +63,6 @@
LINKER_DISPLAYS_MANGLED_NAMES = YES;
OTHER_MIGFLAGS = -F$(BUILT_PRODUCTS_DIR);
PREBINDING = NO;
-VALID_ARCHS = i386 x86_64;
WARNING_CFLAGS = -Wall -Wextra -Wchar-subscripts -Wextra-tokens -Wformat-security -Winit-self -Wmissing-format-attribute -Wmissing-noreturn -Wno-unused-parameter -Wpacked -Wpointer-arith -Wredundant-decls -Wundef -Wwrite-strings -Wexit-time-destructors -Wglobal-constructors -Wtautological-compare;
TARGET_MAC_OS_X_VERSION_MAJOR = $(MAC_OS_X_VERSION_MAJOR);
Modified: trunk/Tools/ChangeLog (159668 => 159669)
--- trunk/Tools/ChangeLog 2013-11-22 03:01:55 UTC (rev 159668)
+++ trunk/Tools/ChangeLog 2013-11-22 03:04:12 UTC (rev 159669)
@@ -1,3 +1,14 @@
+2013-11-21 Mark Rowe <[email protected]>
+
+ <https://webkit.org/b/124702> Stop overriding VALID_ARCHS.
+
+ All modern versions of Xcode set it appropriately for our needs.
+
+ Reviewed by Alexey Proskuryakov.
+
+ * MiniBrowser/Configurations/Base.xcconfig:
+ * WebKitTestRunner/Configurations/Base.xcconfig:
+
2013-11-21 Nick Diego Yamane <[email protected]>
webkitdirs::checkForArgumentAndRemoveFromArrayRef() removed wrong element
Modified: trunk/Tools/MiniBrowser/Configurations/Base.xcconfig (159668 => 159669)
--- trunk/Tools/MiniBrowser/Configurations/Base.xcconfig 2013-11-22 03:01:55 UTC (rev 159668)
+++ trunk/Tools/MiniBrowser/Configurations/Base.xcconfig 2013-11-22 03:04:12 UTC (rev 159669)
@@ -35,7 +35,6 @@
GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO
WARNING_CFLAGS = -Wall -W -Wno-unused-parameter
LINKER_DISPLAYS_MANGLED_NAMES = YES;
-VALID_ARCHS = i386 x86_64;
TARGET_MAC_OS_X_VERSION_MAJOR = $(MAC_OS_X_VERSION_MAJOR);
Modified: trunk/Tools/WebKitTestRunner/Configurations/Base.xcconfig (159668 => 159669)
--- trunk/Tools/WebKitTestRunner/Configurations/Base.xcconfig 2013-11-22 03:01:55 UTC (rev 159668)
+++ trunk/Tools/WebKitTestRunner/Configurations/Base.xcconfig 2013-11-22 03:04:12 UTC (rev 159669)
@@ -39,7 +39,6 @@
GCC_WARN_UNUSED_VARIABLE = YES
WARNING_CFLAGS = -Wall -W -Wno-unused-parameter -Wundef
LINKER_DISPLAYS_MANGLED_NAMES = YES;
-VALID_ARCHS = i386 x86_64;
GCC_PREFIX_HEADER = WebKitTestRunnerPrefix.h
DEBUG_DEFINES_debug = ;