⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 286157 in webkit


Ignore:
Timestamp:
Nov 24, 2021, 10:36:04 PM (5 years ago)
Author:
ysuzuki@apple.com
Message:

[libpas] Unreviewed, libpas requires libatomic in Linux etc.

  • CMakeLists.txt:
Location:
trunk/Source/bmalloc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/bmalloc/CMakeLists.txt

    r285880 r286157  
    640640endif ()
    641641
    642 if (CMAKE_COMPILER_IS_GNUCXX)
    643     set(bmalloc_LIBRARIES
    644         ${CMAKE_DL_LIBS}
    645         atomic
    646     )
    647 else ()
    648     set(bmalloc_LIBRARIES
    649         ${CMAKE_DL_LIBS}
    650     )
     642if (ATOMICS_REQUIRE_LIBATOMIC)
     643    list(APPEND bmalloc_LIBRARIES atomic)
    651644endif ()
    652645
  • trunk/Source/bmalloc/ChangeLog

    r286051 r286157  
     12021-11-24  Yusuke Suzuki  <ysuzuki@apple.com>
     2
     3        [libpas] Unreviewed, libpas requires libatomic in Linux etc.
     4
     5        * CMakeLists.txt:
     6
    172021-11-19  Yusuke Suzuki  <ysuzuki@apple.com>
    28
Note: See TracChangeset for help on using the changeset viewer.