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

Changeset 285880 in webkit


Ignore:
Timestamp:
Nov 16, 2021, 12:55:51 PM (5 years ago)
Author:
ysuzuki@apple.com
Message:

Unreviewed, -latomic is only available for GCC
https://bugs.webkit.org/show_bug.cgi?id=233097

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

Legend:

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

    r285853 r285880  
    640640endif ()
    641641
    642 set(bmalloc_LIBRARIES
    643     ${CMAKE_DL_LIBS}
    644     atomic
    645 )
     642if (CMAKE_COMPILER_IS_GNUCXX)
     643    set(bmalloc_LIBRARIES
     644        ${CMAKE_DL_LIBS}
     645        atomic
     646    )
     647else ()
     648    set(bmalloc_LIBRARIES
     649        ${CMAKE_DL_LIBS}
     650    )
     651endif ()
    646652
    647653set(bmalloc_INTERFACE_LIBRARIES bmalloc)
  • trunk/Source/bmalloc/ChangeLog

    r285853 r285880  
     12021-11-16  Yusuke Suzuki  <ysuzuki@apple.com>
     2
     3        Unreviewed, -latomic is only available for GCC
     4        https://bugs.webkit.org/show_bug.cgi?id=233097
     5
     6        * CMakeLists.txt:
     7
    182021-11-15  Yusuke Suzuki  <ysuzuki@apple.com>
    29
Note: See TracChangeset for help on using the changeset viewer.