Changeset 177690 in webkit


Ignore:
Timestamp:
Dec 23, 2014, 12:01:42 PM (10 years ago)
Author:
ap@apple.com
Message:

TestWebKitAPI build is broken when ASan is enabled
https://bugs.webkit.org/show_bug.cgi?id=139902

Reviewed by Darin Adler.

  • TestWebKitAPI/Configurations/InjectedBundle.xcconfig:
  • TestWebKitAPI/Configurations/TestWebKitAPILibrary.xcconfig:

Inherit linker flags from DebugRelease, which respects ASAN.

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r177659 r177690  
     12014-12-23  Alexey Proskuryakov  <ap@apple.com>
     2
     3        TestWebKitAPI build is broken when ASan is enabled
     4        https://bugs.webkit.org/show_bug.cgi?id=139902
     5
     6        Reviewed by Darin Adler.
     7
     8        * TestWebKitAPI/Configurations/InjectedBundle.xcconfig:
     9        * TestWebKitAPI/Configurations/TestWebKitAPILibrary.xcconfig:
     10        Inherit linker flags from DebugRelease, which respects ASAN.
     11
    1122014-12-22  Simon Fraser  <simon.fraser@apple.com>
    213
  • trunk/Tools/TestWebKitAPI/Configurations/InjectedBundle.xcconfig

    r177506 r177690  
    2929FRAMEWORK_AND_LIBRARY_LDFLAGS_macosx = -framework JavaScriptCore -framework WebKit -framework CoreGraphics -framework Cocoa;
    3030
    31 OTHER_LDFLAGS = $(FRAMEWORK_AND_LIBRARY_LDFLAGS);
     31OTHER_LDFLAGS = $(inherited) $(FRAMEWORK_AND_LIBRARY_LDFLAGS);
  • trunk/Tools/TestWebKitAPI/Configurations/TestWebKitAPILibrary.xcconfig

    r177434 r177690  
    2626PRODUCT_NAME = TestWebKitAPI;
    2727SKIP_INSTALL = YES;
    28 
    29 OTHER_LDFLAGS = ;
Note: See TracChangeset for help on using the changeset viewer.