aboutsummaryrefslogtreecommitdiffstats
path: root/community/llvm4/fix-CheckAtomic.cmake.patch
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2019-01-02 13:02:13 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2019-01-02 13:02:13 +0000
commitc5b3b45d75e75b3705fe9d9f9b2f43f3440e8b66 (patch)
treecdb906bed9589eea35d2678aa97cb1c6256ccc2b /community/llvm4/fix-CheckAtomic.cmake.patch
parent810640a980c8289f62b3de3e31aa4a109c5ea308 (diff)
downloadaports-c5b3b45d75e75b3705fe9d9f9b2f43f3440e8b66.tar.bz2
aports-c5b3b45d75e75b3705fe9d9f9b2f43f3440e8b66.tar.xz
unmaintained/llvm4: move from community
Seems like nothing uses it
Diffstat (limited to 'community/llvm4/fix-CheckAtomic.cmake.patch')
-rw-r--r--community/llvm4/fix-CheckAtomic.cmake.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/community/llvm4/fix-CheckAtomic.cmake.patch b/community/llvm4/fix-CheckAtomic.cmake.patch
deleted file mode 100644
index a5309de6cf..0000000000
--- a/community/llvm4/fix-CheckAtomic.cmake.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-This cmake file uses command CHECK_LIBRARY_EXISTS that is defined in
-module CheckLibraryExists, but it does not include that module.
-
-This caused build error in lldb, but only on x86 (not x86_64)...
-
- -- Performing Test HAVE_CXX_ATOMICS64_WITHOUT_LIB - Failed
- CMake Error at /usr/lib/llvm4/lib/cmake/llvm/CheckAtomic.cmake:66 (check_library_exists):
- Unknown CMake command "check_library_exists".
- Call Stack (most recent call first):
- cmake/modules/LLDBStandalone.cmake:90 (include)
- CMakeLists.txt:3 (include)
-
---- a/cmake/modules/CheckAtomic.cmake
-+++ b/cmake/modules/CheckAtomic.cmake
-@@ -1,6 +1,7 @@
- # atomic builtins are required for threading support.
-
- INCLUDE(CheckCXXSourceCompiles)
-+INCLUDE(CheckLibraryExists)
-
- # Sometimes linking against libatomic is required for atomic ops, if
- # the platform doesn't support lock-free atomics.