Changeset 286157 in webkit
- Timestamp:
- Nov 24, 2021, 10:36:04 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
r285880 r286157 640 640 endif () 641 641 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 ) 642 if (ATOMICS_REQUIRE_LIBATOMIC) 643 list(APPEND bmalloc_LIBRARIES atomic) 651 644 endif () 652 645 -
trunk/Source/bmalloc/ChangeLog
r286051 r286157 1 2021-11-24 Yusuke Suzuki <ysuzuki@apple.com> 2 3 [libpas] Unreviewed, libpas requires libatomic in Linux etc. 4 5 * CMakeLists.txt: 6 1 7 2021-11-19 Yusuke Suzuki <ysuzuki@apple.com> 2 8
Note:
See TracChangeset
for help on using the changeset viewer.