-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [BUILD] Upgrade to LLVM6 Includes: - Upgrade of LLVM to version 6.0.1 provided by dai-thirdparty-deps project - LVMlite upgrade - LLVM config path The upgrade enables PPC64le tests and avoids segfaults reported by: - numba/numba#2451 - numba/numba#2848 Close #980
- Loading branch information
1 parent
9ff1dc0
commit 668b166
Showing
4 changed files
with
18 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ MAINTAINER H2O.ai <[email protected]> | |
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
ENV LD_LIBRARY_PATH=/usr/local/cuda/lib64:$LD_LIBRARY_PATH | ||
ENV LLVM_VERSION=6.0.1 | ||
|
||
RUN \ | ||
apt-get -q -y update && \ | ||
|
@@ -68,15 +69,15 @@ RUN \ | |
|
||
# Install LLVM for pydatatable | ||
RUN \ | ||
wget http://releases.llvm.org/4.0.0/clang+llvm-4.0.0-x86_64-linux-gnu-ubuntu-16.04.tar.xz && \ | ||
tar xf clang+llvm-4.0.0-x86_64-linux-gnu-ubuntu-16.04.tar.xz && \ | ||
rm clang+llvm-4.0.0-x86_64-linux-gnu-ubuntu-16.04.tar.xz && \ | ||
cp /clang+llvm-4.0.0-x86_64-linux-gnu-ubuntu-16.04/lib/libomp.so /usr/lib | ||
wget http://releases.llvm.org/${LLVM_VERSION}/clang+llvm-${LLVM_VERSION}-x86_64-linux-gnu-ubuntu-16.04.tar.xz && \ | ||
tar xf clang+llvm-${LLVM_VERSION}-x86_64-linux-gnu-ubuntu-16.04.tar.xz && \ | ||
rm clang+llvm-${LLVM_VERSION}-x86_64-linux-gnu-ubuntu-16.04.tar.xz && \ | ||
cp /clang+llvm-${LLVM_VERSION}-x86_64-linux-gnu-ubuntu-16.04/lib/libomp.so /usr/lib | ||
|
||
ENV \ | ||
LLVM4=/clang+llvm-4.0.0-x86_64-linux-gnu-ubuntu-16.04 \ | ||
LLVM_CONFIG=/clang+llvm-4.0.0-x86_64-linux-gnu-ubuntu-16.04/bin/llvm-config \ | ||
CLANG=/clang+llvm-4.0.0-x86_64-linux-gnu-ubuntu-16.04/bin/clang | ||
LLVM6=/clang+llvm-${LLVM_VERSION}-x86_64-linux-gnu-ubuntu-16.04 \ | ||
LLVM_CONFIG=/clang+llvm-${LLVM_VERSION}-x86_64-linux-gnu-ubuntu-16.04/bin/llvm-config \ | ||
CLANG=/clang+llvm-${LLVM_VERSION}-x86_64-linux-gnu-ubuntu-16.04/bin/clang | ||
|
||
# A separated layer to collect core dumps | ||
RUN mkdir -p /tmp/cores && chmod a+rwx /tmp/cores |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters