Changeset 167149 in webkit


Ignore:
Timestamp:
Apr 11, 2014 2:11:29 PM (10 years ago)
Author:
ddkilzer@apple.com
Message:

[ASan] Build broke because libCompileRuntimeToLLVMIR.a links to libclang_rt.asan_osx_dynamic.dylib
<http://webkit.org/b/131556>
<rdar://problem/16591856>

Reviewed by Brent Fulgham.

  • Configurations/CompileRuntimeToLLVMIR.xcconfig: Clear

OTHER_LDFLAGS so the ASan build does not try to link to
libclang_rt.asan_osx_dynamic.dylib.

Location:
trunk/Source/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r167142 r167149  
     12014-04-11  David Kilzer  <ddkilzer@apple.com>
     2
     3        [ASan] Build broke because libCompileRuntimeToLLVMIR.a links to libclang_rt.asan_osx_dynamic.dylib
     4        <http://webkit.org/b/131556>
     5        <rdar://problem/16591856>
     6
     7        Reviewed by Brent Fulgham.
     8
     9        * Configurations/CompileRuntimeToLLVMIR.xcconfig: Clear
     10        OTHER_LDFLAGS so the ASan build does not try to link to
     11        libclang_rt.asan_osx_dynamic.dylib.
     12
    1132014-04-11  Mark Lam  <mark.lam@apple.com>
    214
  • trunk/Source/JavaScriptCore/Configurations/CompileRuntimeToLLVMIR.xcconfig

    r167087 r167149  
    3939OTHER_CFLAGS = -c -flto;
    4040OTHER_CPLUSPLUSFLAGS = -c -flto;
     41OTHER_LDFLAGS = ;
Note: See TracChangeset for help on using the changeset viewer.