[libcxx-commits] [PATCH] D92856: [libc++] Use TARGET_FILE instead of TARGET_SONAME_FILE when generating ABI lists
Louis Dionne via Phabricator via libcxx-commits
libcxx-commits at lists.llvm.org
Fri Dec 11 09:13:02 PST 2020
This revision was automatically updated to reflect the committed changes.
Closed by commit rGf75bf712deec: [libc++] Use TARGET_FILE instead of TARGET_SONAME_FILE when generating ABI lists (authored by ldionne).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D92856/new/
https://reviews.llvm.org/D92856
Files:
libcxx/lib/abi/CMakeLists.txt
Index: libcxx/lib/abi/CMakeLists.txt
===================================================================
--- libcxx/lib/abi/CMakeLists.txt
+++ libcxx/lib/abi/CMakeLists.txt
@@ -57,7 +57,7 @@
"${Python3_EXECUTABLE}" "${LIBCXX_SOURCE_DIR}/utils/sym_diff.py"
--only-stdlib-symbols
--strict "${abi_list_file}"
- $<TARGET_SONAME_FILE:cxx_shared>
+ $<TARGET_FILE:cxx_shared>
DEPENDS cxx_shared
COMMENT "Testing libc++'s exported symbols against the ABI list")
else()
@@ -67,7 +67,7 @@
add_custom_target(generate-cxx-abilist
COMMAND "${Python3_EXECUTABLE}" "${LIBCXX_SOURCE_DIR}/utils/generate_abi_list.py"
--output "${abi_list_file}"
- "$<TARGET_SONAME_FILE:cxx_shared>"
+ "$<TARGET_FILE:cxx_shared>"
DEPENDS cxx_shared
COMMENT "Generating the ABI list file for configuration ${abi_list_identifier}")
else()
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D92856.311250.patch
Type: text/x-patch
Size: 920 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libcxx-commits/attachments/20201211/b1e78140/attachment.bin>
More information about the libcxx-commits
mailing list