Skip to content

Commit ba49121

Browse files
committed
Drop OracleLinux LLVM version to 3.8.
1 parent 10e819c commit ba49121

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ Changes:
3333

3434
* Now using the native version of Psych.
3535

36+
* The supported version of LLVM on Oracle Linux has been dropped to 3.8.
37+
3638
* The supported version of Fedora has been dropped to 25, and the supported
3739
version of LLVM to 3.8, due to LLVM incompatibilities. The instructions for
3840
installing `libssl` have changed to match.

doc/user/installing-llvm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ have success with later versions, but we don't actively test these.
66

77
## Oracle Linux
88

9-
The tested version of LLVM for Oracle Linux is 4.0.1.
9+
The tested version of LLVM for Oracle Linux is 3.8.
1010

1111
Oracle Linux does not include recent-enough LLVM packages, so you will have to
1212
[build LLVM from scratch](https://llvm.org/docs/CMake.html). You'll need to

tool/docker/oraclelinux-llvm/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM oraclelinux:7-slim
33
44

55
# Install LLVM from source
6-
ENV LANG=en_US.UTF-8 WORK_DIR=/tmp/llvm-build LLVM_VERSION=4.0.1
6+
ENV LANG=en_US.UTF-8 WORK_DIR=/tmp/llvm-build LLVM_VERSION=3.8.0
77
ENV LLVM_INSTALL_PREFIX=/opt/llvm-${LLVM_VERSION} LLVM_BUILD_DIR=${WORK_DIR}/llvm-${LLVM_VERSION}
88
ENV PATH ${LLVM_INSTALL_PREFIX}/bin:${PATH}
99
RUN mkdir $WORK_DIR
@@ -60,3 +60,4 @@ RUN make install
6060
RUN echo "/opt/llvm-${LLVM_VERSION}/lib64" >> /etc/ld.so.conf.d/llvm-x86_64.conf && ldconfig
6161
WORKDIR /
6262
RUN rm -rf ${WORK_DIR}
63+
RUN clang --version

0 commit comments

Comments
 (0)