Changeset 228671 in webkit


Ignore:
Timestamp:
Feb 19, 2018 5:17:43 AM (6 years ago)
Author:
Carlos Garcia Campos
Message:

Merge r228293 - 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:
releases/WebKitGTK/webkit-2.20
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • releases/WebKitGTK/webkit-2.20/ChangeLog

    r228631 r228671  
     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  Michael Catanzaro  <mcatanzaro@igalia.com>
    212
  • releases/WebKitGTK/webkit-2.20/Source/cmake/WebKitCompilerFlags.cmake

    r228631 r228671  
    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.