Changeset 162574 in webkit


Ignore:
Timestamp:
Jan 22, 2014 5:17:37 PM (10 years ago)
Author:
dfarler@apple.com
Message:

ASAN builds are broken - missing flags
https://bugs.webkit.org/show_bug.cgi?id=127231

Reviewed by Andy Estes.

Add missing $(ASAN_OTHER_LDFLAGS).

  • Configurations/PluginProcessShim.xcconfig:
  • Configurations/SecItemShim.xcconfig:
  • Configurations/WebKit2.xcconfig:
  • Configurations/WebProcessShim.xcconfig:
Location:
trunk/Source/WebKit2
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r162569 r162574  
     12014-01-22  David Farler  <dfarler@apple.com>
     2
     3        ASAN builds are broken - missing flags
     4        https://bugs.webkit.org/show_bug.cgi?id=127231
     5
     6        Reviewed by Andy Estes.
     7
     8        Add missing $(ASAN_OTHER_LDFLAGS).
     9        * Configurations/PluginProcessShim.xcconfig:
     10        * Configurations/SecItemShim.xcconfig:
     11        * Configurations/WebKit2.xcconfig:
     12        * Configurations/WebProcessShim.xcconfig:
     13
    1142014-01-22  Brady Eidson  <beidson@apple.com>
    215
  • trunk/Source/WebKit2/Configurations/PluginProcessShim.xcconfig

    r161918 r162574  
    2626#include "Shim.xcconfig"
    2727
    28 OTHER_LDFLAGS = $(OTHER_LDFLAGS_$(PLATFORM_NAME));
     28OTHER_LDFLAGS = $(ASAN_OTHER_LDFLAGS) $(OTHER_LDFLAGS_$(PLATFORM_NAME));
    2929OTHER_LDFLAGS_macosx = -framework AppKit -framework Carbon -framework QuartzCore;
  • trunk/Source/WebKit2/Configurations/SecItemShim.xcconfig

    r161918 r162574  
    2626#include "Shim.xcconfig"
    2727
    28 OTHER_LDFLAGS = $(OTHER_LDFLAGS_$(PLATFORM_NAME));
     28OTHER_LDFLAGS = $(ASAN_OTHER_LDFLAGS) $(OTHER_LDFLAGS_$(PLATFORM_NAME));
    2929OTHER_LDFLAGS_macosx = -framework Security;
  • trunk/Source/WebKit2/Configurations/WebKit2.xcconfig

    r161950 r162574  
    4141OTHER_LDFLAGS_iphoneos = $(FRAMEWORK_AND_LIBRARY_LDFLAGS);
    4242OTHER_LDFLAGS_iphonesimulator = $(OTHER_LDFLAGS_iphoneos);
    43 OTHER_LDFLAGS_macosx = $(FRAMEWORK_AND_LIBRARY_LDFLAGS);
     43OTHER_LDFLAGS_macosx = $(ASAN_OTHER_LDFLAGS) $(FRAMEWORK_AND_LIBRARY_LDFLAGS);
    4444
    4545EXCLUDED_SOURCE_FILE_NAMES = $(EXCLUDED_SOURCE_FILE_NAMES_$(PLATFORM_NAME));
  • trunk/Source/WebKit2/Configurations/WebProcessShim.xcconfig

    r161918 r162574  
    2626#include "Shim.xcconfig"
    2727
    28 OTHER_LDFLAGS = $(OTHER_LDFLAGS_$(PLATFORM_NAME));
     28OTHER_LDFLAGS = $(ASAN_OTHER_LDFLAGS) $(OTHER_LDFLAGS_$(PLATFORM_NAME));
    2929OTHER_LDFLAGS_macosx = -framework CoreServices -framework Security;
Note: See TracChangeset for help on using the changeset viewer.