Skip to content

Commit 4fa5931

Browse files
committed
Fix typo:
1 parent b28e09f commit 4fa5931

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libcxxabi/src/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ endif()
7777

7878
if (FUCHSIA)
7979
# TODO: Use CMAKE_LINK_LIBRARY_USING_FEATURE once our minimum CMake is at least 3.24
80-
# https://cmake.org/cmake/help/latest/variable/CMAKE_LINK_LIBRARY_USING_FEATURE.html
80+
# https://cmake.org/cmake/help/latest/variable/CMAKE_LINK_LIBRARY_USING_FEATURE.html
8181
add_link_flags("-Wl,--push-state,--as-needed,-lzircon,--pop-state")
8282
endif()
8383

@@ -192,7 +192,7 @@ target_compile_options(cxxabi_shared_objects PRIVATE "${LIBCXXABI_ADDITIONAL_COM
192192

193193
# Build with -fsized-deallocation, which is default in recent versions of Clang.
194194
# TODO(LLVM 21): This can be dropped once we only support Clang >= 19.
195-
target_add_compile_flags_if_supported(cxxabi_shared_objcts PRIVATE -fsized-deallocation)
195+
target_add_compile_flags_if_supported(cxxabi_shared_objects PRIVATE -fsized-deallocation)
196196

197197
add_library(cxxabi_shared SHARED)
198198
set_target_properties(cxxabi_shared
@@ -287,7 +287,7 @@ target_compile_options(cxxabi_static_objects PRIVATE "${LIBCXXABI_ADDITIONAL_COM
287287

288288
# Build with -fsized-deallocation, which is default in recent versions of Clang.
289289
# TODO(LLVM 21): This can be dropped once we only support Clang >= 19.
290-
target_add_compile_flags_if_supported(cxxabi_static_objcts PRIVATE -fsized-deallocation)
290+
target_add_compile_flags_if_supported(cxxabi_static_objects PRIVATE -fsized-deallocation)
291291

292292
if(LIBCXXABI_HERMETIC_STATIC_LIBRARY)
293293
target_add_compile_flags_if_supported(cxxabi_static_objects PRIVATE -fvisibility=hidden)

0 commit comments

Comments
 (0)