Skip to content

Commit 731515d

Browse files
committed
🐞 fix: Link libc++.a for mac
1 parent d9d84ba commit 731515d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

cpp/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -308,7 +308,7 @@ elseif(CMAKE_SYSTEM_NAME STREQUAL "Linux" OR CMAKE_SYSTEM_NAME STREQUAL "Android
308308
# This is a patch build.
309309
# https://github.com/abseil/abseil-cpp/blob/master/CMake/README.md
310310
add_subdirectory(${V8_DIR}/third_party/abseil-cpp ${V8_RELEASE_DIR}/third_party/abseil-cpp)
311-
target_link_libraries(Javet PUBLIC absl::base absl::time)
311+
target_link_libraries(Javet PUBLIC -lc++ absl::base absl::time)
312312
endif()
313313
if(DEFINED NODE_DIR)
314314
list(APPEND includeDirs

docs/release_notes/release_notes_4_0.rst

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Release Notes 4.0.x - 4.1.x
77

88
* Upgraded Node.js to ``v22.11.0`` `(2024-10-29) <https://github.com/nodejs/node/blob/main/doc/changelogs/CHANGELOG_V22.md#22.11.0>`_
99
* Upgraded V8 to ``v13.1.201.8`` (2024-11-11)
10+
* Upgraded clang to v20 for V8 mode on MacOS
1011
* Switched to core dependency + individual native dependency
1112
* Supported ``Float16Array``
1213
* Added ``Float16``

0 commit comments

Comments
 (0)