Changeset 218056 in webkit


Ignore:
Timestamp:
Jun 10, 2017 1:32:57 PM (7 years ago)
Author:
mitz@apple.com
Message:

[Xcode] With Xcode 9 developer beta, everything rebuilds when switching between command-line and IDE
https://bugs.webkit.org/show_bug.cgi?id=173223

Reviewed by Sam Weinig.

The rebuilds were happening due to a difference in the compiler options that the IDE and
xcodebuild were specifying. Only the IDE was passing the -index-store-path option. To make
xcodebuild pass that option, too, set CLANG_INDEX_STORE_ENABLE to YES if it is unset, and
specify an appropriate path in CLANG_INDEX_STORE_PATH.

PerformanceTests:

  • MediaTime/Configurations/DebugRelease.xcconfig:

Source/bmalloc:

  • Configurations/DebugRelease.xcconfig:

Source/JavaScriptCore:

  • Configurations/DebugRelease.xcconfig:

Source/ThirdParty/ANGLE:

  • Configurations/DebugRelease.xcconfig:

Source/ThirdParty/libwebrtc:

  • Configurations/DebugRelease.xcconfig:

Source/WebCore:

  • Configurations/DebugRelease.xcconfig:

Source/WebCore/PAL:

  • Configurations/DebugRelease.xcconfig:

Source/WebInspectorUI:

  • Configurations/DebugRelease.xcconfig:

Source/WebKit/mac:

  • Configurations/DebugRelease.xcconfig:

Source/WebKit2:

  • Configurations/DebugRelease.xcconfig:

Source/WTF:

  • Configurations/DebugRelease.xcconfig:

Tools:

  • ContentExtensionTester/Configurations/DebugRelease.xcconfig:
  • DumpRenderTree/mac/Configurations/DebugRelease.xcconfig:
  • ImageDiff/cg/Configurations/DebugRelease.xcconfig:
  • MiniBrowser/Configurations/DebugRelease.xcconfig:
  • MobileMiniBrowser/Configurations/DebugRelease.xcconfig:
  • TestWebKitAPI/Configurations/DebugRelease.xcconfig:
  • WebEditingTester/Configurations/DebugRelease.xcconfig:
  • WebKitTestRunner/Configurations/DebugRelease.xcconfig:
Location:
trunk
Files:
31 edited

Legend:

Unmodified
Added
Removed
  • trunk/PerformanceTests/ChangeLog

    r217897 r218056  
     12017-06-10  Dan Bernstein  <mitz@apple.com>
     2
     3        [Xcode] With Xcode 9 developer beta, everything rebuilds when switching between command-line and IDE
     4        https://bugs.webkit.org/show_bug.cgi?id=173223
     5
     6        Reviewed by Sam Weinig.
     7
     8        The rebuilds were happening due to a difference in the compiler options that the IDE and
     9        xcodebuild were specifying. Only the IDE was passing the -index-store-path option. To make
     10        xcodebuild pass that option, too, set CLANG_INDEX_STORE_ENABLE to YES if it is unset, and
     11        specify an appropriate path in CLANG_INDEX_STORE_PATH.
     12
     13        * MediaTime/Configurations/DebugRelease.xcconfig:
     14
    1152017-06-07  Saam Barati  <sbarati@apple.com>
    216
  • trunk/PerformanceTests/MediaTime/Configurations/DebugRelease.xcconfig

    r211746 r218056  
    4141SDKROOT_ = macosx;
    4242SDKROOT_YES = macosx.internal;
     43
     44CLANG_INDEX_STORE_ENABLE = $(CLANG_INDEX_STORE_ENABLE_$(CLANG_INDEX_STORE_ENABLE));
     45CLANG_INDEX_STORE_ENABLE_ = YES;
     46CLANG_INDEX_STORE_ENABLE_YES = YES;
     47CLANG_INDEX_STORE_PATH = $(PROJECT_TEMP_DIR)/Index;
  • trunk/Source/JavaScriptCore/ChangeLog

    r218051 r218056  
     12017-06-10  Dan Bernstein  <mitz@apple.com>
     2
     3        [Xcode] With Xcode 9 developer beta, everything rebuilds when switching between command-line and IDE
     4        https://bugs.webkit.org/show_bug.cgi?id=173223
     5
     6        Reviewed by Sam Weinig.
     7
     8        The rebuilds were happening due to a difference in the compiler options that the IDE and
     9        xcodebuild were specifying. Only the IDE was passing the -index-store-path option. To make
     10        xcodebuild pass that option, too, set CLANG_INDEX_STORE_ENABLE to YES if it is unset, and
     11        specify an appropriate path in CLANG_INDEX_STORE_PATH.
     12
     13        * Configurations/DebugRelease.xcconfig:
     14
    1152017-06-10  Yusuke Suzuki  <utatane.tea@gmail.com>
    216
  • trunk/Source/JavaScriptCore/Configurations/DebugRelease.xcconfig

    r215316 r218056  
    4343SDKROOT_ = macosx;
    4444SDKROOT_YES = macosx.internal;
     45
     46CLANG_INDEX_STORE_ENABLE = $(CLANG_INDEX_STORE_ENABLE_$(CLANG_INDEX_STORE_ENABLE));
     47CLANG_INDEX_STORE_ENABLE_ = YES;
     48CLANG_INDEX_STORE_ENABLE_YES = YES;
     49CLANG_INDEX_STORE_PATH = $(PROJECT_TEMP_DIR)/Index;
  • trunk/Source/ThirdParty/ANGLE/ChangeLog

    r217531 r218056  
     12017-06-10  Dan Bernstein  <mitz@apple.com>
     2
     3        [Xcode] With Xcode 9 developer beta, everything rebuilds when switching between command-line and IDE
     4        https://bugs.webkit.org/show_bug.cgi?id=173223
     5
     6        Reviewed by Sam Weinig.
     7
     8        The rebuilds were happening due to a difference in the compiler options that the IDE and
     9        xcodebuild were specifying. Only the IDE was passing the -index-store-path option. To make
     10        xcodebuild pass that option, too, set CLANG_INDEX_STORE_ENABLE to YES if it is unset, and
     11        specify an appropriate path in CLANG_INDEX_STORE_PATH.
     12
     13        * Configurations/DebugRelease.xcconfig:
     14
    1152017-05-28  Dan Bernstein  <mitz@apple.com>
    216
  • trunk/Source/ThirdParty/ANGLE/Configurations/DebugRelease.xcconfig

    r215316 r218056  
    2020SDKROOT_ = macosx;
    2121SDKROOT_YES = macosx.internal;
     22
     23CLANG_INDEX_STORE_ENABLE = $(CLANG_INDEX_STORE_ENABLE_$(CLANG_INDEX_STORE_ENABLE));
     24CLANG_INDEX_STORE_ENABLE_ = YES;
     25CLANG_INDEX_STORE_ENABLE_YES = YES;
     26CLANG_INDEX_STORE_PATH = $(PROJECT_TEMP_DIR)/Index;
  • trunk/Source/ThirdParty/libwebrtc/ChangeLog

    r217888 r218056  
     12017-06-10  Dan Bernstein  <mitz@apple.com>
     2
     3        [Xcode] With Xcode 9 developer beta, everything rebuilds when switching between command-line and IDE
     4        https://bugs.webkit.org/show_bug.cgi?id=173223
     5
     6        Reviewed by Sam Weinig.
     7
     8        The rebuilds were happening due to a difference in the compiler options that the IDE and
     9        xcodebuild were specifying. Only the IDE was passing the -index-store-path option. To make
     10        xcodebuild pass that option, too, set CLANG_INDEX_STORE_ENABLE to YES if it is unset, and
     11        specify an appropriate path in CLANG_INDEX_STORE_PATH.
     12
     13        * Configurations/DebugRelease.xcconfig:
     14
    1152017-06-07  Youenn Fablet  <youenn@apple.com>
    216
  • trunk/Source/ThirdParty/libwebrtc/Configurations/DebugRelease.xcconfig

    r215316 r218056  
    2222
    2323WK_RELOCATABLE_FRAMEWORKS = YES;
     24
     25CLANG_INDEX_STORE_ENABLE = $(CLANG_INDEX_STORE_ENABLE_$(CLANG_INDEX_STORE_ENABLE));
     26CLANG_INDEX_STORE_ENABLE_ = YES;
     27CLANG_INDEX_STORE_ENABLE_YES = YES;
     28CLANG_INDEX_STORE_PATH = $(PROJECT_TEMP_DIR)/Index;
  • trunk/Source/WTF/ChangeLog

    r218012 r218056  
     12017-06-10  Dan Bernstein  <mitz@apple.com>
     2
     3        [Xcode] With Xcode 9 developer beta, everything rebuilds when switching between command-line and IDE
     4        https://bugs.webkit.org/show_bug.cgi?id=173223
     5
     6        Reviewed by Sam Weinig.
     7
     8        The rebuilds were happening due to a difference in the compiler options that the IDE and
     9        xcodebuild were specifying. Only the IDE was passing the -index-store-path option. To make
     10        xcodebuild pass that option, too, set CLANG_INDEX_STORE_ENABLE to YES if it is unset, and
     11        specify an appropriate path in CLANG_INDEX_STORE_PATH.
     12
     13        * Configurations/DebugRelease.xcconfig:
     14
    1152017-06-09  Chris Dumez  <cdumez@apple.com>
    216
  • trunk/Source/WTF/Configurations/DebugRelease.xcconfig

    r215316 r218056  
    4242SDKROOT_ = macosx;
    4343SDKROOT_YES = macosx.internal;
     44
     45CLANG_INDEX_STORE_ENABLE = $(CLANG_INDEX_STORE_ENABLE_$(CLANG_INDEX_STORE_ENABLE));
     46CLANG_INDEX_STORE_ENABLE_ = YES;
     47CLANG_INDEX_STORE_ENABLE_YES = YES;
     48CLANG_INDEX_STORE_PATH = $(PROJECT_TEMP_DIR)/Index;
  • trunk/Source/WebCore/ChangeLog

    r218052 r218056  
     12017-06-10  Dan Bernstein  <mitz@apple.com>
     2
     3        [Xcode] With Xcode 9 developer beta, everything rebuilds when switching between command-line and IDE
     4        https://bugs.webkit.org/show_bug.cgi?id=173223
     5
     6        Reviewed by Sam Weinig.
     7
     8        The rebuilds were happening due to a difference in the compiler options that the IDE and
     9        xcodebuild were specifying. Only the IDE was passing the -index-store-path option. To make
     10        xcodebuild pass that option, too, set CLANG_INDEX_STORE_ENABLE to YES if it is unset, and
     11        specify an appropriate path in CLANG_INDEX_STORE_PATH.
     12
     13        * Configurations/DebugRelease.xcconfig:
     14
    1152017-06-10  Dan Bernstein  <mitz@apple.com>
    216
  • trunk/Source/WebCore/Configurations/DebugRelease.xcconfig

    r215316 r218056  
    4545
    4646WK_RELOCATABLE_FRAMEWORKS = YES;
     47
     48CLANG_INDEX_STORE_ENABLE = $(CLANG_INDEX_STORE_ENABLE_$(CLANG_INDEX_STORE_ENABLE));
     49CLANG_INDEX_STORE_ENABLE_ = YES;
     50CLANG_INDEX_STORE_ENABLE_YES = YES;
     51CLANG_INDEX_STORE_PATH = $(PROJECT_TEMP_DIR)/Index;
  • trunk/Source/WebCore/PAL/ChangeLog

    r217672 r218056  
     12017-06-10  Dan Bernstein  <mitz@apple.com>
     2
     3        [Xcode] With Xcode 9 developer beta, everything rebuilds when switching between command-line and IDE
     4        https://bugs.webkit.org/show_bug.cgi?id=173223
     5
     6        Reviewed by Sam Weinig.
     7
     8        The rebuilds were happening due to a difference in the compiler options that the IDE and
     9        xcodebuild were specifying. Only the IDE was passing the -index-store-path option. To make
     10        xcodebuild pass that option, too, set CLANG_INDEX_STORE_ENABLE to YES if it is unset, and
     11        specify an appropriate path in CLANG_INDEX_STORE_PATH.
     12
     13        * Configurations/DebugRelease.xcconfig:
     14
    1152017-06-01  Andy Estes  <aestes@apple.com>
    216
  • trunk/Source/WebCore/PAL/Configurations/DebugRelease.xcconfig

    r215316 r218056  
    4343SDKROOT_ = macosx;
    4444SDKROOT_YES = macosx.internal;
     45
     46CLANG_INDEX_STORE_ENABLE = $(CLANG_INDEX_STORE_ENABLE_$(CLANG_INDEX_STORE_ENABLE));
     47CLANG_INDEX_STORE_ENABLE_ = YES;
     48CLANG_INDEX_STORE_ENABLE_YES = YES;
     49CLANG_INDEX_STORE_PATH = $(PROJECT_TEMP_DIR)/Index;
  • trunk/Source/WebInspectorUI/ChangeLog

    r218049 r218056  
     12017-06-10  Dan Bernstein  <mitz@apple.com>
     2
     3        [Xcode] With Xcode 9 developer beta, everything rebuilds when switching between command-line and IDE
     4        https://bugs.webkit.org/show_bug.cgi?id=173223
     5
     6        Reviewed by Sam Weinig.
     7
     8        The rebuilds were happening due to a difference in the compiler options that the IDE and
     9        xcodebuild were specifying. Only the IDE was passing the -index-store-path option. To make
     10        xcodebuild pass that option, too, set CLANG_INDEX_STORE_ENABLE to YES if it is unset, and
     11        specify an appropriate path in CLANG_INDEX_STORE_PATH.
     12
     13        * Configurations/DebugRelease.xcconfig:
     14
    1152017-06-10  Devin Rousso  <drousso@apple.com>
    216
  • trunk/Source/WebInspectorUI/Configurations/DebugRelease.xcconfig

    r215316 r218056  
    2525COMBINE_INSPECTOR_RESOURCES = NO;
    2626COMBINE_TEST_RESOURCES = YES;
     27
     28CLANG_INDEX_STORE_ENABLE = $(CLANG_INDEX_STORE_ENABLE_$(CLANG_INDEX_STORE_ENABLE));
     29CLANG_INDEX_STORE_ENABLE_ = YES;
     30CLANG_INDEX_STORE_ENABLE_YES = YES;
     31CLANG_INDEX_STORE_PATH = $(PROJECT_TEMP_DIR)/Index;
  • trunk/Source/WebKit/mac/ChangeLog

    r218014 r218056  
     12017-06-10  Dan Bernstein  <mitz@apple.com>
     2
     3        [Xcode] With Xcode 9 developer beta, everything rebuilds when switching between command-line and IDE
     4        https://bugs.webkit.org/show_bug.cgi?id=173223
     5
     6        Reviewed by Sam Weinig.
     7
     8        The rebuilds were happening due to a difference in the compiler options that the IDE and
     9        xcodebuild were specifying. Only the IDE was passing the -index-store-path option. To make
     10        xcodebuild pass that option, too, set CLANG_INDEX_STORE_ENABLE to YES if it is unset, and
     11        specify an appropriate path in CLANG_INDEX_STORE_PATH.
     12
     13        * Configurations/DebugRelease.xcconfig:
     14
    1152017-06-09  Wenson Hsieh  <wenson_hsieh@apple.com>
    216
  • trunk/Source/WebKit/mac/Configurations/DebugRelease.xcconfig

    r215316 r218056  
    5252SDKROOT_ = macosx;
    5353SDKROOT_YES = macosx.internal;
     54
     55CLANG_INDEX_STORE_ENABLE = $(CLANG_INDEX_STORE_ENABLE_$(CLANG_INDEX_STORE_ENABLE));
     56CLANG_INDEX_STORE_ENABLE_ = YES;
     57CLANG_INDEX_STORE_ENABLE_YES = YES;
     58CLANG_INDEX_STORE_PATH = $(PROJECT_TEMP_DIR)/Index;
  • trunk/Source/WebKit2/ChangeLog

    r218046 r218056  
     12017-06-10  Dan Bernstein  <mitz@apple.com>
     2
     3        [Xcode] With Xcode 9 developer beta, everything rebuilds when switching between command-line and IDE
     4        https://bugs.webkit.org/show_bug.cgi?id=173223
     5
     6        Reviewed by Sam Weinig.
     7
     8        The rebuilds were happening due to a difference in the compiler options that the IDE and
     9        xcodebuild were specifying. Only the IDE was passing the -index-store-path option. To make
     10        xcodebuild pass that option, too, set CLANG_INDEX_STORE_ENABLE to YES if it is unset, and
     11        specify an appropriate path in CLANG_INDEX_STORE_PATH.
     12
     13        * Configurations/DebugRelease.xcconfig:
     14
    1152017-06-09  Ryosuke Niwa  <rniwa@webkit.org>
    216
  • trunk/Source/WebKit2/Configurations/DebugRelease.xcconfig

    r215316 r218056  
    5959WK_WEBCONTENT_SERVICE_NEEDS_XPC_DOMAIN_EXTENSION_ENTITLEMENT = NO;
    6060WK_WEBCONTENT_SERVICE_NEEDS_VERSIONED_FRAMEWORK_PATH_LDFLAG[sdk=macosx*] = YES;
     61
     62CLANG_INDEX_STORE_ENABLE = $(CLANG_INDEX_STORE_ENABLE_$(CLANG_INDEX_STORE_ENABLE));
     63CLANG_INDEX_STORE_ENABLE_ = YES;
     64CLANG_INDEX_STORE_ENABLE_YES = YES;
     65CLANG_INDEX_STORE_PATH = $(PROJECT_TEMP_DIR)/Index;
  • trunk/Source/bmalloc/ChangeLog

    r217918 r218056  
     12017-06-10  Dan Bernstein  <mitz@apple.com>
     2
     3        [Xcode] With Xcode 9 developer beta, everything rebuilds when switching between command-line and IDE
     4        https://bugs.webkit.org/show_bug.cgi?id=173223
     5
     6        Reviewed by Sam Weinig.
     7
     8        The rebuilds were happening due to a difference in the compiler options that the IDE and
     9        xcodebuild were specifying. Only the IDE was passing the -index-store-path option. To make
     10        xcodebuild pass that option, too, set CLANG_INDEX_STORE_ENABLE to YES if it is unset, and
     11        specify an appropriate path in CLANG_INDEX_STORE_PATH.
     12
     13        * Configurations/DebugRelease.xcconfig:
     14
    1152017-06-07  Geoffrey Garen  <ggaren@apple.com>
    216
  • trunk/Source/bmalloc/Configurations/DebugRelease.xcconfig

    r215316 r218056  
    4242SDKROOT_ = macosx;
    4343SDKROOT_YES = macosx.internal;
     44
     45CLANG_INDEX_STORE_ENABLE = $(CLANG_INDEX_STORE_ENABLE_$(CLANG_INDEX_STORE_ENABLE));
     46CLANG_INDEX_STORE_ENABLE_ = YES;
     47CLANG_INDEX_STORE_ENABLE_YES = YES;
     48CLANG_INDEX_STORE_PATH = $(PROJECT_TEMP_DIR)/Index;
  • trunk/Tools/ChangeLog

    r218055 r218056  
     12017-06-10  Dan Bernstein  <mitz@apple.com>
     2
     3        [Xcode] With Xcode 9 developer beta, everything rebuilds when switching between command-line and IDE
     4        https://bugs.webkit.org/show_bug.cgi?id=173223
     5
     6        Reviewed by Sam Weinig.
     7
     8        The rebuilds were happening due to a difference in the compiler options that the IDE and
     9        xcodebuild were specifying. Only the IDE was passing the -index-store-path option. To make
     10        xcodebuild pass that option, too, set CLANG_INDEX_STORE_ENABLE to YES if it is unset, and
     11        specify an appropriate path in CLANG_INDEX_STORE_PATH.
     12
     13        * ContentExtensionTester/Configurations/DebugRelease.xcconfig:
     14        * DumpRenderTree/mac/Configurations/DebugRelease.xcconfig:
     15        * ImageDiff/cg/Configurations/DebugRelease.xcconfig:
     16        * MiniBrowser/Configurations/DebugRelease.xcconfig:
     17        * MobileMiniBrowser/Configurations/DebugRelease.xcconfig:
     18        * TestWebKitAPI/Configurations/DebugRelease.xcconfig:
     19        * WebEditingTester/Configurations/DebugRelease.xcconfig:
     20        * WebKitTestRunner/Configurations/DebugRelease.xcconfig:
     21
    1222017-06-10  Jonathan Bedard  <jbedard@apple.com>
    223
  • trunk/Tools/ContentExtensionTester/Configurations/DebugRelease.xcconfig

    r209434 r218056  
    4040SDKROOT_ = macosx;
    4141SDKROOT_YES = macosx.internal;
     42
     43CLANG_INDEX_STORE_ENABLE = $(CLANG_INDEX_STORE_ENABLE_$(CLANG_INDEX_STORE_ENABLE));
     44CLANG_INDEX_STORE_ENABLE_ = YES;
     45CLANG_INDEX_STORE_ENABLE_YES = YES;
     46CLANG_INDEX_STORE_PATH = $(PROJECT_TEMP_DIR)/Index;
  • trunk/Tools/DumpRenderTree/mac/Configurations/DebugRelease.xcconfig

    r215316 r218056  
    4949SDKROOT_ = macosx;
    5050SDKROOT_YES = macosx.internal;
     51
     52CLANG_INDEX_STORE_ENABLE = $(CLANG_INDEX_STORE_ENABLE_$(CLANG_INDEX_STORE_ENABLE));
     53CLANG_INDEX_STORE_ENABLE_ = YES;
     54CLANG_INDEX_STORE_ENABLE_YES = YES;
     55CLANG_INDEX_STORE_PATH = $(PROJECT_TEMP_DIR)/Index;
  • trunk/Tools/ImageDiff/cg/Configurations/DebugRelease.xcconfig

    r216207 r218056  
    4040SDKROOT_ = macosx;
    4141SDKROOT_YES = macosx.internal;
     42
     43CLANG_INDEX_STORE_ENABLE = $(CLANG_INDEX_STORE_ENABLE_$(CLANG_INDEX_STORE_ENABLE));
     44CLANG_INDEX_STORE_ENABLE_ = YES;
     45CLANG_INDEX_STORE_ENABLE_YES = YES;
     46CLANG_INDEX_STORE_PATH = $(PROJECT_TEMP_DIR)/Index;
  • trunk/Tools/MiniBrowser/Configurations/DebugRelease.xcconfig

    r215316 r218056  
    4242SDKROOT_ = macosx;
    4343SDKROOT_YES = macosx.internal;
     44
     45CLANG_INDEX_STORE_ENABLE = $(CLANG_INDEX_STORE_ENABLE_$(CLANG_INDEX_STORE_ENABLE));
     46CLANG_INDEX_STORE_ENABLE_ = YES;
     47CLANG_INDEX_STORE_ENABLE_YES = YES;
     48CLANG_INDEX_STORE_PATH = $(PROJECT_TEMP_DIR)/Index;
  • trunk/Tools/MobileMiniBrowser/Configurations/DebugRelease.xcconfig

    r205353 r218056  
    2929
    3030GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = YES;
     31
     32CLANG_INDEX_STORE_ENABLE = $(CLANG_INDEX_STORE_ENABLE_$(CLANG_INDEX_STORE_ENABLE));
     33CLANG_INDEX_STORE_ENABLE_ = YES;
     34CLANG_INDEX_STORE_ENABLE_YES = YES;
     35CLANG_INDEX_STORE_PATH = $(PROJECT_TEMP_DIR)/Index;
  • trunk/Tools/TestWebKitAPI/Configurations/DebugRelease.xcconfig

    r215316 r218056  
    4444
    4545OTHER_CPLUSPLUSFLAGS = $(inherited) -ftemplate-depth=256;
     46
     47CLANG_INDEX_STORE_ENABLE = $(CLANG_INDEX_STORE_ENABLE_$(CLANG_INDEX_STORE_ENABLE));
     48CLANG_INDEX_STORE_ENABLE_ = YES;
     49CLANG_INDEX_STORE_ENABLE_YES = YES;
     50CLANG_INDEX_STORE_PATH = $(PROJECT_TEMP_DIR)/Index;
  • trunk/Tools/WebEditingTester/Configurations/DebugRelease.xcconfig

    r209434 r218056  
    4141SDKROOT_ = macosx;
    4242SDKROOT_YES = macosx.internal;
     43
     44CLANG_INDEX_STORE_ENABLE = $(CLANG_INDEX_STORE_ENABLE_$(CLANG_INDEX_STORE_ENABLE));
     45CLANG_INDEX_STORE_ENABLE_ = YES;
     46CLANG_INDEX_STORE_ENABLE_YES = YES;
     47CLANG_INDEX_STORE_PATH = $(PROJECT_TEMP_DIR)/Index;
  • trunk/Tools/WebKitTestRunner/Configurations/DebugRelease.xcconfig

    r215316 r218056  
    4949SDKROOT_ = macosx;
    5050SDKROOT_YES = macosx.internal;
     51
     52CLANG_INDEX_STORE_ENABLE = $(CLANG_INDEX_STORE_ENABLE_$(CLANG_INDEX_STORE_ENABLE));
     53CLANG_INDEX_STORE_ENABLE_ = YES;
     54CLANG_INDEX_STORE_ENABLE_YES = YES;
     55CLANG_INDEX_STORE_PATH = $(PROJECT_TEMP_DIR)/Index;
Note: See TracChangeset for help on using the changeset viewer.