aboutsummaryrefslogtreecommitdiffstats
path: root/community/llvm5/fix-CheckAtomic.cmake.patch
diff options
context:
space:
mode:
authorLeo <thinkabit.ukim@gmail.com>2020-04-09 15:04:05 -0300
committerLeo <thinkabit.ukim@gmail.com>2020-04-09 15:04:16 -0300
commit98da180e5ec54102d50244fd38ea18de28bf1fde (patch)
tree5eaa1ba1ffcd90100ed969c17358ecb0032a9f6a /community/llvm5/fix-CheckAtomic.cmake.patch
parenta5a6aea68d08960e3f2cc50cc05afc8586cc16ab (diff)
downloadaports-98da180e5ec54102d50244fd38ea18de28bf1fde.tar.bz2
aports-98da180e5ec54102d50244fd38ea18de28bf1fde.tar.xz
community/llvm5: remove
No more consumers
Diffstat (limited to 'community/llvm5/fix-CheckAtomic.cmake.patch')
-rw-r--r--community/llvm5/fix-CheckAtomic.cmake.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/community/llvm5/fix-CheckAtomic.cmake.patch b/community/llvm5/fix-CheckAtomic.cmake.patch
deleted file mode 100644
index a5309de6cf..0000000000
--- a/community/llvm5/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.