Changeset 228293 in webkit


Ignore:
Timestamp:
Feb 8, 2018 1:45:31 PM (6 years ago)
Author:
Michael Catanzaro
Message:

Unreviewed, switch -pthread to -lpthread per recommendation from Adrian
https://bugs.webkit.org/show_bug.cgi?id=182400
<rdar://problem/37252242>

This is tested and works fine.

  • Source/cmake/WebKitCompilerFlags.cmake:
Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r228148 r228293  
     12018-02-08  Michael Catanzaro  <mcatanzaro@igalia.com>
     2
     3        Unreviewed, switch -pthread to -lpthread per recommendation from Adrian
     4        https://bugs.webkit.org/show_bug.cgi?id=182400
     5        <rdar://problem/37252242>
     6
     7        This is tested and works fine.
     8
     9        * Source/cmake/WebKitCompilerFlags.cmake:
     10
    1112018-02-05  Yousuke Kimoto  <yousuke.kimoto@sony.com>
    212
  • trunk/Source/cmake/WebKitCompilerFlags.cmake

    r228144 r228293  
    167167        set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fsanitize=address")
    168168        set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address")
    169         set(CMAKE_EXE_LINKER_FLAGS "-pthread ${CMAKE_EXE_LINKER_FLAGS} -fsanitize=address")
    170         set(CMAKE_SHARED_LINKER_FLAGS "-pthread ${CMAKE_SHARED_LINKER_FLAGS} -fsanitize=address")
     169        set(CMAKE_EXE_LINKER_FLAGS "-lpthread ${CMAKE_EXE_LINKER_FLAGS} -fsanitize=address")
     170        set(CMAKE_SHARED_LINKER_FLAGS "-lpthread ${CMAKE_SHARED_LINKER_FLAGS} -fsanitize=address")
    171171    endif ()
    172172endif ()
Note: See TracChangeset for help on using the changeset viewer.