1// Copyright (C) 2010, 2013 Apple Inc. All rights reserved.
2//
3// Redistribution and use in source and binary forms, with or without
4// modification, are permitted provided that the following conditions
5// are met:
6// 1. Redistributions of source code must retain the above copyright
7//    notice, this list of conditions and the following disclaimer.
8// 2. Redistributions in binary form must reproduce the above copyright
9//    notice, this list of conditions and the following disclaimer in the
10//    documentation and/or other materials provided with the distribution.
11//
12// THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
13// EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
14// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
15// PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE INC. OR
16// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
17// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
18// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
19// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
20// OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
22// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23
24#include "iOS.xcconfig"
25#include "../../../../Internal/Configurations/UseInternalSDK.xcconfig"
26
27CLANG_CXX_LANGUAGE_STANDARD = gnu++0x;
28CLANG_CXX_LIBRARY = libc++;
29CLANG_WARN_BOOL_CONVERSION = YES;
30CLANG_WARN_CONSTANT_CONVERSION = YES;
31CLANG_WARN_CXX0X_EXTENSIONS = NO;
32CLANG_WARN_EMPTY_BODY = YES;
33CLANG_WARN_ENUM_CONVERSION = YES;
34CLANG_WARN_INT_CONVERSION = YES;
35CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
36DEBUG_INFORMATION_FORMAT = dwarf-with-dsym;
37GCC_C_LANGUAGE_STANDARD = gnu99;
38GCC_DEBUGGING_SYMBOLS = default;
39GCC_DYNAMIC_NO_PIC = NO;
40GCC_ENABLE_CPP_EXCEPTIONS = NO;
41GCC_ENABLE_CPP_RTTI = NO;
42GCC_ENABLE_OBJC_EXCEPTIONS = YES;
43GCC_ENABLE_OBJC_GC = $(GCC_ENABLE_OBJC_GC_$(PLATFORM_NAME));
44GCC_ENABLE_OBJC_GC_iphoneos = NO;
45GCC_ENABLE_OBJC_GC_iphonesimulator = NO;
46GCC_ENABLE_OBJC_GC_macosx = $(GCC_ENABLE_OBJC_GC_macosx_$(CONFIGURATION));
47GCC_ENABLE_OBJC_GC_macosx_Production = supported;
48GCC_ENABLE_OBJC_GC_macosx_Debug = $(GCC_ENABLE_OBJC_GC_macosx_Debug_or_Release);
49GCC_ENABLE_OBJC_GC_macosx_Release = $(GCC_ENABLE_OBJC_GC_macosx_Debug_or_Release);
50GCC_ENABLE_OBJC_GC_macosx_Debug_or_Release = $(GCC_ENABLE_OBJC_GC_macosx_Debug_or_Release_$(USE_INTERNAL_SDK));
51GCC_ENABLE_OBJC_GC_macosx_Debug_or_Release_ = NO;
52GCC_ENABLE_OBJC_GC_macosx_Debug_or_Release_YES = supported;
53GCC_ENABLE_SYMBOL_SEPARATION = NO;
54GCC_FAST_OBJC_DISPATCH = YES;
55GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
56GCC_MODEL_TUNING = G5;
57GCC_OBJC_CALL_CXX_CDTORS = YES;
58GCC_PRECOMPILE_PREFIX_HEADER = YES;
59GCC_SYMBOLS_PRIVATE_EXTERN = YES;
60GCC_THREADSAFE_STATICS = NO;
61GCC_TREAT_WARNINGS_AS_ERRORS = YES;
62GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
63// FIXME: <http://webkit.org/b/109847> WebKit2 should build with -Wshorten-64-to-32
64GCC_WARN_64_TO_32_BIT_CONVERSION = NO;
65GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO;
66GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
67GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
68GCC_WARN_ABOUT_RETURN_TYPE = YES;
69GCC_WARN_NON_VIRTUAL_DESTRUCTOR = YES;
70GCC_WARN_SIGN_COMPARE = YES;
71GCC_WARN_UNDECLARED_SELECTOR = YES;
72GCC_WARN_UNINITIALIZED_AUTOS = YES;
73GCC_WARN_UNUSED_FUNCTION = YES;
74GCC_WARN_UNUSED_VARIABLE = YES;
75LINKER_DISPLAYS_MANGLED_NAMES = YES;
76OTHER_MIGFLAGS = -F$(BUILT_PRODUCTS_DIR);
77PREBINDING = NO;
78WARNING_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 -Wimplicit-fallthrough;
79
80TARGET_MAC_OS_X_VERSION_MAJOR = $(MAC_OS_X_VERSION_MAJOR);
81
82
83// DEBUG_DEFINES, GCC_OPTIMIZATION_LEVEL, STRIP_INSTALLED_PRODUCT and DEAD_CODE_STRIPPING vary between the debug and normal variants.
84// We set up the values for each variant here, and have the Debug configuration in the Xcode project use the _debug variant.
85DEBUG_DEFINES_debug = DISABLE_THREAD_CHECK;
86DEBUG_DEFINES_normal = NDEBUG;
87DEBUG_DEFINES = $(DEBUG_DEFINES_$(CURRENT_VARIANT));
88
89GCC_OPTIMIZATION_LEVEL = $(GCC_OPTIMIZATION_LEVEL_$(CURRENT_VARIANT));
90GCC_OPTIMIZATION_LEVEL_normal = s;
91GCC_OPTIMIZATION_LEVEL_debug = 0;
92
93STRIP_INSTALLED_PRODUCT = $(STRIP_INSTALLED_PRODUCT_$(CURRENT_VARIANT));
94STRIP_INSTALLED_PRODUCT_normal = YES;
95STRIP_INSTALLED_PRODUCT_debug = NO;
96
97COPY_PHASE_STRIP = NO;
98// Dead code stripping needs to be on in the debug variant to avoid link errors.  This is due to unconditionally
99// building the MiG bindings for WebKitPluginClient even when the functions that the bindings wrap are not built.
100DEAD_CODE_STRIPPING = YES;
101
102SECTORDER_FLAGS = $(SECTORDER_FLAGS_$(PLATFORM_NAME));
103SECTORDER_FLAGS_iphoneos = -Wl,-order_file,$(SDKROOT)/AppleInternal/OrderFiles/WebKit.order;
104SECTORDER_FLAGS_macosx = -Wl,-order_file,mac/WebKit2.order;
105
106INSTALL_PATH = $(INSTALL_PATH_PREFIX)$(INSTALL_PATH_ACTUAL);
107
108SDKROOT = macosx.internal;
109
110CODE_SIGN_IDENTITY = -;
111
112TOOLCHAINS = $(TOOLCHAINS_$(PLATFORM_NAME));
113TOOLCHAINS_iphoneos = $(TOOLCHAINS);
114TOOLCHAINS_iphonesimulator = $(TOOLCHAINS);
115TOOLCHAINS_macosx = $(TOOLCHAINS_macosx_$(MAC_OS_X_VERSION_MAJOR));
116TOOLCHAINS_macosx_1080 = default;
117TOOLCHAINS_macosx_1090 = $(TOOLCHAINS);
118TOOLCHAINS_macosx_101000 = $(TOOLCHAINS_macosx_1090);
119
120SUPPORTED_PLATFORMS = macosx iphoneos iphonesimulator;
121