Skip to content

Commit 987fc5f

Browse files
committed
Enable all LLVM libraries
Change-Id: I54d32ad72a87713ce82e17769a589dde00965102
1 parent ea1f013 commit 987fc5f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

cpp/cmake_modules/FindLLVM.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ message(STATUS "Found LLVM ${LLVM_PACKAGE_VERSION}")
4141
message(STATUS "Using LLVMConfig.cmake in: ${LLVM_DIR}")
4242

4343
# Find the libraries that correspond to the LLVM components
44-
llvm_map_components_to_libnames(LLVM_LIBS core mcjit native ipo bitreader irreader target linker analysis debuginfodwarf support)
44+
llvm_map_components_to_libnames(LLVM_LIBS all)
4545

4646
find_program(LLVM_LINK_EXECUTABLE llvm-link
4747
HINTS ${LLVM_TOOLS_BINARY_DIR})

python/manylinux1/scripts/build_llvm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
source /multibuild/manylinux_utils.sh
2020

21-
export LLVM_VERSION="6.0.0"
21+
export LLVM_VERSION="7.0.1"
2222
curl -sL http://releases.llvm.org/${LLVM_VERSION}/llvm-${LLVM_VERSION}.src.tar.xz -o llvm-${LLVM_VERSION}.src.tar.xz
2323
unxz llvm-${LLVM_VERSION}.src.tar.xz
2424
tar xf llvm-${LLVM_VERSION}.src.tar

0 commit comments

Comments
 (0)