Changeset 175569 in webkit


Ignore:
Timestamp:
Nov 4, 2014 12:30:52 PM (9 years ago)
Author:
abucur@adobe.com
Message:

Building WebInspectorUI should not run the clang static analyzer by default
https://bugs.webkit.org/show_bug.cgi?id=137652

Reviewed by Timothy Hatcher.

There's no need to have the static analyzer enabled at compile time by default for the WebInspectorUI project.
It also breaks the ASAN build because the static analyzing step runs using the default compiler not the
ASAN clang.

  • Configurations/DebugRelease.xcconfig: Remove the RUN_CLANG_STATIC_ANALYZER variable.
Location:
trunk/Source/WebInspectorUI
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebInspectorUI/ChangeLog

    r175563 r175569  
     12014-11-04  Andrei Bucur  <abucur@adobe.com>
     2
     3        Building WebInspectorUI should not run the clang static analyzer by default
     4        https://bugs.webkit.org/show_bug.cgi?id=137652
     5
     6        Reviewed by Timothy Hatcher.
     7
     8        There's no need to have the static analyzer enabled at compile time by default for the WebInspectorUI project.
     9        It also breaks the ASAN build because the static analyzing step runs using the default compiler not the
     10        ASAN clang.
     11
     12        * Configurations/DebugRelease.xcconfig: Remove the RUN_CLANG_STATIC_ANALYZER variable.
     13
    1142014-11-04  Joseph Pecoraro  <pecoraro@apple.com>
    215
  • trunk/Source/WebInspectorUI/Configurations/DebugRelease.xcconfig

    r175397 r175569  
    1515GCC_WARN_ABOUT_DEPRECATED_FUNCTIONS = YES;
    1616DEBUG_INFORMATION_FORMAT = dwarf;
    17 RUN_CLANG_STATIC_ANALYZER = YES;
    1817
    1918OTHER_CFLAGS = $(ASAN_OTHER_CFLAGS);
Note: See TracChangeset for help on using the changeset viewer.