Home | History | Annotate | Download | only in Configurations
      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 DEBUG_INFORMATION_FORMAT = dwarf;
     25 GCC_C_LANGUAGE_STANDARD = gnu99;
     26 GCC_DEBUGGING_SYMBOLS = default;
     27 GCC_DYNAMIC_NO_PIC = NO;
     28 GCC_ENABLE_CPP_RTTI = NO;
     29 GCC_ENABLE_OBJC_EXCEPTIONS = YES;
     30 GCC_ENABLE_OBJC_GC = $(GCC_ENABLE_OBJC_GC_$(REAL_PLATFORM_NAME));
     31 GCC_ENABLE_OBJC_GC_iphoneos = NO;
     32 GCC_ENABLE_OBJC_GC_iphonesimulator = NO;
     33 GCC_ENABLE_OBJC_GC_macosx = supported;
     34 GCC_ENABLE_SYMBOL_SEPARATION = NO;
     35 GCC_FAST_OBJC_DISPATCH = YES;
     36 GCC_GENERATE_DEBUGGING_SYMBOLS = YES;
     37 GCC_MODEL_TUNING = $(GCC_MODEL_TUNING_$(REAL_PLATFORM_NAME));
     38 GCC_MODEL_TUNING_macosx = G5;
     39 GCC_OBJC_CALL_CXX_CDTORS = YES;
     40 GCC_PRECOMPILE_PREFIX_HEADER = YES;
     41 GCC_THREADSAFE_STATICS = NO;
     42 GCC_TREAT_WARNINGS_AS_ERRORS = YES;
     43 GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = NO;
     44 GCC_WARN_ABOUT_MISSING_NEWLINE = YES;
     45 GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
     46 GCC_WARN_NON_VIRTUAL_DESTRUCTOR = YES;
     47 LINKER_DISPLAYS_MANGLED_NAMES = YES;
     48 OTHER_MIGFLAGS = -F$(BUILT_PRODUCTS_DIR);
     49 PREBINDING = NO;
     50 VALID_ARCHS = $(VALID_ARCHS_$(REAL_PLATFORM_NAME));
     51 VALID_ARCHS_iphoneos = $(ARCHS_STANDARD_32_BIT);
     52 VALID_ARCHS_iphonesimulator = $(ARCHS_STANDARD_32_BIT);
     53 VALID_ARCHS_macosx = i386 ppc x86_64 ppc64;
     54 // FIXME: <rdar://problem/5070292> WebKit should build with -Wshorten-64-to-32
     55 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;
     56 WARNING_CFLAGS = $(WARNING_CFLAGS_$(REAL_PLATFORM_NAME));
     57 WARNING_CFLAGS_iphoneos = $(WARNING_CFLAGS_BASE);
     58 WARNING_CFLAGS_iphonesimulator = $(WARNING_CFLAGS_BASE);
     59 WARNING_CFLAGS_macosx = $(WARNING_CFLAGS_BASE);
     60 
     61 
     62 REAL_PLATFORM_NAME = $(REAL_PLATFORM_NAME_$(PLATFORM_NAME));
     63 REAL_PLATFORM_NAME_ = $(REAL_PLATFORM_NAME_macosx);
     64 REAL_PLATFORM_NAME_iphoneos = iphoneos;
     65 REAL_PLATFORM_NAME_iphonesimulator = iphonesimulator;
     66 REAL_PLATFORM_NAME_macosx = macosx;
     67 
     68 TARGET_MAC_OS_X_VERSION_MAJOR = $(MAC_OS_X_VERSION_MAJOR);
     69 
     70 
     71 // DEBUG_DEFINES, GCC_OPTIMIZATION_LEVEL, STRIP_INSTALLED_PRODUCT and DEAD_CODE_STRIPPING vary between the debug and normal variants.
     72 // We set up the values for each variant here, and have the Debug configuration in the Xcode project use the _debug variant.
     73 DEBUG_DEFINES_debug = DISABLE_THREAD_CHECK;
     74 DEBUG_DEFINES_normal = NDEBUG;
     75 DEBUG_DEFINES = $(DEBUG_DEFINES_$(CURRENT_VARIANT));
     76 
     77 GCC_OPTIMIZATION_LEVEL = $(GCC_OPTIMIZATION_LEVEL_$(CURRENT_VARIANT));
     78 GCC_OPTIMIZATION_LEVEL_normal = 2;
     79 GCC_OPTIMIZATION_LEVEL_debug = 0;
     80 
     81 STRIP_INSTALLED_PRODUCT = $(STRIP_INSTALLED_PRODUCT_$(CURRENT_VARIANT));
     82 STRIP_INSTALLED_PRODUCT_normal = YES;
     83 STRIP_INSTALLED_PRODUCT_debug = NO;
     84 
     85 // Dead code stripping needs to be on in the debug variant to avoid link errors.  This is due to unconditionally
     86 // building the MiG bindings for WebKitPluginClient even when the functions that the bindings wrap are not built.
     87 DEAD_CODE_STRIPPING = YES;
     88 
     89 SECTORDER_FLAGS = -sectorder __TEXT __text mac/WebKit.order;
     90 
     91 // Use GCC 4.2 with Xcode 3.1, which includes GCC 4.2 but defaults to GCC 4.0.
     92 // Note that Xcode versions as new as 3.1.2 use XCODE_VERSION_ACTUAL for the minor version
     93 // number.  Newer versions of Xcode use XCODE_VERSION_MINOR for the minor version, and
     94 // XCODE_VERSION_ACTUAL for the full version number.
     95 TARGET_GCC_VERSION = $(TARGET_GCC_VERSION_$(REAL_PLATFORM_NAME));
     96 TARGET_GCC_VERSION_iphoneos = LLVM_GCC_42;
     97 TARGET_GCC_VERSION_iphonesimulator = GCC_42;
     98 TARGET_GCC_VERSION_macosx = $(TARGET_GCC_VERSION_macosx_$(TARGET_MAC_OS_X_VERSION_MAJOR));
     99 TARGET_GCC_VERSION_macosx_ = $(TARGET_GCC_VERSION_macosx_1040);
    100 TARGET_GCC_VERSION_macosx_1040 = GCC_40;
    101 TARGET_GCC_VERSION_macosx_1050 = $(TARGET_GCC_VERSION_macosx_1050_$(XCODE_VERSION_MINOR));
    102 TARGET_GCC_VERSION_macosx_1050_ = $(TARGET_GCC_VERSION_macosx_1050_$(XCODE_VERSION_ACTUAL));
    103 TARGET_GCC_VERSION_macosx_1050_0310 = GCC_42;
    104 TARGET_GCC_VERSION_macosx_1050_0320 = GCC_42;
    105 TARGET_GCC_VERSION_macosx_1060 = GCC_42;
    106 TARGET_GCC_VERSION_macosx_1070 = $(TARGET_GCC_VERSION_macosx_1070_$(CONFIGURATION));
    107 TARGET_GCC_VERSION_macosx_1070_Debug = LLVM_COMPILER;
    108 TARGET_GCC_VERSION_macosx_1070_Release = LLVM_GCC_42;
    109 TARGET_GCC_VERSION_macosx_1070_Production = LLVM_GCC_42;
    110 
    111 GCC_VERSION = $(GCC_VERSION_$(TARGET_GCC_VERSION));
    112 GCC_VERSION_GCC_40 = 4.0;
    113 GCC_VERSION_GCC_42 = 4.2;
    114 GCC_VERSION_LLVM_GCC_42 = com.apple.compilers.llvmgcc42;
    115 GCC_VERSION_LLVM_COMPILER = com.apple.compilers.llvm.clang.1_0;
    116 
    117 // FIXME: Disable C++ exceptions in the LLVM Compiler once it supports enabling Obj-C exceptions without C++ exceptions.
    118 GCC_ENABLE_CPP_EXCEPTIONS = $(GCC_ENABLE_CPP_EXCEPTIONS_$(TARGET_GCC_VERSION));
    119 GCC_ENABLE_CPP_EXCEPTIONS_GCC_40 = NO;
    120 GCC_ENABLE_CPP_EXCEPTIONS_GCC_42 = NO;
    121 GCC_ENABLE_CPP_EXCEPTIONS_LLVM_GCC = NO;
    122 GCC_ENABLE_CPP_EXCEPTIONS_LLVM_COMPILER = YES;
    123 
    124 // 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.
    125 SDKROOT = $(SDKROOT_$(MAC_OS_X_VERSION_MAJOR)_$(TARGET_MAC_OS_X_VERSION_MAJOR));
    126 SDKROOT_1050_1040 = macosx10.4;
    127 SDKROOT_1060_1040 = macosx10.4;
    128 SDKROOT_1060_1050 = macosx10.5;
    129 SDKROOT_1070_1040 = macosx10.4;
    130 SDKROOT_1070_1050 = macosx10.5;
    131 SDKROOT_1070_1060 = macosx10.6;
    132