[libc-commits] [PATCH] D143258: [libc] Fix pthread argument for scudo integration tests when using GCC
David Spickett via Phabricator via libc-commits
libc-commits at lists.llvm.org
Mon Feb 6 01:50:06 PST 2023
This revision was automatically updated to reflect the committed changes.
Closed by commit rG6c7e047b4061: [libc] Fix pthread argument for scudo integration tests when using GCC (authored by DavidSpickett).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D143258/new/
https://reviews.llvm.org/D143258
Files:
libc/test/integration/scudo/CMakeLists.txt
Index: libc/test/integration/scudo/CMakeLists.txt
===================================================================
--- libc/test/integration/scudo/CMakeLists.txt
+++ libc/test/integration/scudo/CMakeLists.txt
@@ -27,7 +27,7 @@
target_link_options(
libc-scudo-integration-test
PRIVATE
- -pthreads
+ -pthread
)
target_link_libraries(libc-scudo-integration-test
@@ -43,7 +43,7 @@
target_link_options(
libc-gwp-asan-uaf-should-crash
PRIVATE
- -pthreads
+ -pthread
)
target_link_libraries(libc-gwp-asan-uaf-should-crash
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D143258.495033.patch
Type: text/x-patch
Size: 544 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20230206/ab514894/attachment.bin>
More information about the libc-commits
mailing list