Skip to content

Commit 13700c3

Browse files
committed
Revert "[clang-tools-extra] fix the check for if '-latomic' is necessary"
This reverts commit 1d40c41. This seemed to have caused build failures on ARM/AArch64.
1 parent 5dc2314 commit 13700c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang-tools-extra/clangd/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ if(CLANG_BUILT_STANDALONE)
3030
endif()
3131

3232
set(CLANGD_ATOMIC_LIB "")
33-
if(NOT HAVE_CXX_ATOMICS_WITHOUT_LIB OR NOT HAVE_CXX_ATOMICS64_WITHOUT_LIB)
33+
if(NOT HAVE_CXX_ATOMICS64_WITHOUT_LIB)
3434
list(APPEND CLANGD_ATOMIC_LIB "atomic")
3535
endif()
3636

0 commit comments

Comments
 (0)