From 35335e2b2490ff476ba5ece2a0f4287a469deb2e Mon Sep 17 00:00:00 2001 From: Jun Yuan Tan Date: Tue, 9 Nov 2021 10:18:59 +0800 Subject: [PATCH 14/34] Check for atomic intrinsics On some architectures e.g. x86/32bit gcc decides to inline calls to double atomic variables but clang does not and defers it to libatomic therefore detect if clang can use built-ins for atomic if not then link libatomic, this helps building clangd for x86 on linux systems with gcc runtime Rebased to LLVM 14.0.0 by Jun Yuan Tan Signed-off-by: Khem Raj Signed-off-by: Jun Yuan Tan --- llvm/cmake/modules/CheckAtomic.cmake | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/llvm/cmake/modules/CheckAtomic.cmake b/llvm/cmake/modules/CheckAtomic.cmake index 04eed1448482..e890cfecd139 100644 --- a/llvm/cmake/modules/CheckAtomic.cmake +++ b/llvm/cmake/modules/CheckAtomic.cmake @@ -30,10 +30,11 @@ function(check_working_cxx_atomics64 varname) #include #include std::atomic x (0); +std::atomic y (0); int main() { uint64_t i = x.load(std::memory_order_relaxed); (void)i; - return 0; + return int(y); } " ${varname}) set(CMAKE_REQUIRED_FLAGS ${OLD_CMAKE_REQUIRED_FLAGS}) -- 2.33.1