Changeset 285880 in webkit
- Timestamp:
- Nov 16, 2021, 12:55:51 PM (5 years ago)
- Location:
- trunk/Source/bmalloc
- Files:
-
- 2 edited
-
CMakeLists.txt (modified) (1 diff)
-
ChangeLog (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/bmalloc/CMakeLists.txt
r285853 r285880 640 640 endif () 641 641 642 set(bmalloc_LIBRARIES 643 ${CMAKE_DL_LIBS} 644 atomic 645 ) 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 ) 651 endif () 646 652 647 653 set(bmalloc_INTERFACE_LIBRARIES bmalloc) -
trunk/Source/bmalloc/ChangeLog
r285853 r285880 1 2021-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 1 8 2021-11-15 Yusuke Suzuki <ysuzuki@apple.com> 2 9
Note:
See TracChangeset
for help on using the changeset viewer.