initial import
[vuplus_webkit] / Source / WebKit / mac / Configurations / Base.xcconfig
1 // Copyright (C) 2009, 2010 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 "CompilerVersion.xcconfig"
25
26 DEBUG_INFORMATION_FORMAT = dwarf;
27 GCC_C_LANGUAGE_STANDARD = gnu99;
28 GCC_DEBUGGING_SYMBOLS = default;
29 GCC_DYNAMIC_NO_PIC = NO;
30 GCC_ENABLE_CPP_EXCEPTIONS = NO;
31 GCC_ENABLE_CPP_RTTI = NO;
32 GCC_ENABLE_OBJC_EXCEPTIONS = YES;
33 GCC_ENABLE_OBJC_GC = $(GCC_ENABLE_OBJC_GC_$(REAL_PLATFORM_NAME));
34 GCC_ENABLE_OBJC_GC_iphoneos = NO;
35 GCC_ENABLE_OBJC_GC_iphonesimulator = NO;
36 GCC_ENABLE_OBJC_GC_macosx = supported;
37 GCC_ENABLE_SYMBOL_SEPARATION = NO;
38 GCC_FAST_OBJC_DISPATCH = YES;
39 GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
40 GCC_MODEL_TUNING = $(GCC_MODEL_TUNING_$(REAL_PLATFORM_NAME));
41 GCC_MODEL_TUNING_macosx = G5;
42 GCC_OBJC_CALL_CXX_CDTORS = YES;
43 GCC_PRECOMPILE_PREFIX_HEADER = YES;
44 GCC_THREADSAFE_STATICS = NO;
45 GCC_TREAT_WARNINGS_AS_ERRORS = YES;
46 GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO;
47 GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
48 GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
49 GCC_WARN_NON_VIRTUAL_DESTRUCTOR = YES;
50 LINKER_DISPLAYS_MANGLED_NAMES = YES;
51 OTHER_MIGFLAGS = -F$(BUILT_PRODUCTS_DIR);
52 PREBINDING = NO;
53 VALID_ARCHS = $(VALID_ARCHS_$(REAL_PLATFORM_NAME));
54 VALID_ARCHS_iphoneos = $(ARCHS_STANDARD_32_BIT);
55 VALID_ARCHS_iphonesimulator = $(ARCHS_STANDARD_32_BIT);
56 VALID_ARCHS_macosx = i386 ppc x86_64 ppc64;
57 // FIXME: <rdar://problem/5070292> WebKit should build with -Wshorten-64-to-32
58 WARNING_CFLAGS_BASE = -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;
59 WARNING_CFLAGS = $(WARNING_CFLAGS_$(REAL_PLATFORM_NAME));
60 WARNING_CFLAGS_iphoneos = $(WARNING_CFLAGS_BASE);
61 WARNING_CFLAGS_iphonesimulator = $(WARNING_CFLAGS_BASE);
62 WARNING_CFLAGS_macosx = $(WARNING_CFLAGS_BASE);
63
64
65 REAL_PLATFORM_NAME = $(REAL_PLATFORM_NAME_$(PLATFORM_NAME));
66 REAL_PLATFORM_NAME_ = $(REAL_PLATFORM_NAME_macosx);
67 REAL_PLATFORM_NAME_iphoneos = iphoneos;
68 REAL_PLATFORM_NAME_iphonesimulator = iphonesimulator;
69 REAL_PLATFORM_NAME_macosx = macosx;
70
71 TARGET_MAC_OS_X_VERSION_MAJOR = $(MAC_OS_X_VERSION_MAJOR);
72
73
74 // DEBUG_DEFINES, GCC_OPTIMIZATION_LEVEL, STRIP_INSTALLED_PRODUCT and DEAD_CODE_STRIPPING vary between the debug and normal variants.
75 // We set up the values for each variant here, and have the Debug configuration in the Xcode project use the _debug variant.
76 DEBUG_DEFINES_debug = DISABLE_THREAD_CHECK;
77 DEBUG_DEFINES_normal = NDEBUG;
78 DEBUG_DEFINES = $(DEBUG_DEFINES_$(CURRENT_VARIANT));
79
80 GCC_OPTIMIZATION_LEVEL = $(GCC_OPTIMIZATION_LEVEL_$(CURRENT_VARIANT));
81 GCC_OPTIMIZATION_LEVEL_normal = 2;
82 GCC_OPTIMIZATION_LEVEL_debug = 0;
83
84 STRIP_INSTALLED_PRODUCT = $(STRIP_INSTALLED_PRODUCT_$(CURRENT_VARIANT));
85 STRIP_INSTALLED_PRODUCT_normal = YES;
86 STRIP_INSTALLED_PRODUCT_debug = NO;
87
88 // Dead code stripping needs to be on in the debug variant to avoid link errors.  This is due to unconditionally
89 // building the MiG bindings for WebKitPluginClient even when the functions that the bindings wrap are not built.
90 DEAD_CODE_STRIPPING = YES;
91
92 SECTORDER_FLAGS = -Wl,-order_file,mac/WebKit.order;
93
94 // If the target Mac OS X version does not match the current Mac OS X version then we'll want to build using the target version's SDK.
95 SDKROOT = $(SDKROOT_$(MAC_OS_X_VERSION_MAJOR)_$(TARGET_MAC_OS_X_VERSION_MAJOR));
96 SDKROOT_1060_1050 = macosx10.5;
97 SDKROOT_1070_1050 = macosx10.5;
98 SDKROOT_1080_1050 = macosx10.5;
99 SDKROOT_1090_1050 = macosx10.5;
100 SDKROOT_1070_1060 = macosx10.6;
101 SDKROOT_1080_1060 = macosx10.6;
102 SDKROOT_1090_1060 = macosx10.6;
103 SDKROOT_1080_1070 = macosx10.7;
104 SDKROOT_1090_1070 = macosx10.7;
105 SDKROOT_1090_1080 = macosx10.8;