[PATCH] D119989: [clangd] Fix building SerializationTests unit test on OpenBSD
Brad Smith via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Feb 16 16:08:08 PST 2022
brad updated this revision to Diff 409445.
brad added a comment.
Remove a file I did not mean to include as part of the diff.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D119989/new/
https://reviews.llvm.org/D119989
Files:
clang-tools-extra/clangd/unittests/SerializationTests.cpp
Index: clang-tools-extra/clangd/unittests/SerializationTests.cpp
===================================================================
--- clang-tools-extra/clangd/unittests/SerializationTests.cpp
+++ clang-tools-extra/clangd/unittests/SerializationTests.cpp
@@ -310,7 +310,7 @@
// rlimit is part of POSIX.
// Sanitizers use a lot of address space, so we can't apply strict limits.
-#if LLVM_ON_UNIX && !LLVM_ADDRESS_SANITIZER_BUILD && \
+#if LLVM_ON_UNIX && defined(RLIMIT_AS) && !LLVM_ADDRESS_SANITIZER_BUILD && \
!LLVM_MEMORY_SANITIZER_BUILD
class ScopedMemoryLimit {
struct rlimit OriginalLimit;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D119989.409445.patch
Type: text/x-patch
Size: 641 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20220217/22813556/attachment.bin>
More information about the cfe-commits
mailing list