Skip to content
This repository has been archived by the owner on Dec 14, 2021. It is now read-only.

Commit

Permalink
build: Update to LLVM 11.0.0 (issue #1088) (#1116)
Browse files Browse the repository at this point in the history
  • Loading branch information
mlangkabel authored Dec 1, 2020
1 parent 1a0b564 commit 5cae072
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,9 +142,9 @@ Building Sourcetrail requires several dependencies to be in place on your machin

### Required dependencies

* __LLVM/Clang 10.0.0__
* __LLVM/Clang 11.0.0__
* __Reason__: Used for running the preprocessor on the indexedes source code, building and traversing an Abstract Syntax Tree and generating error messages.
* __Building__: Make sure to check out the correct tag: `git checkout llvmorg-10.0.0`
* __Building__: Make sure to check out the correct tag: `git checkout llvmorg-11.0.0`
* __Building for Windows__: Follow [these steps](https://clang.llvm.org/get_started.html) to build the project. Run the cmake command exactly as described.
* __Building for Unix__: Follow this [installation guide](http://clang.llvm.org/docs/LibASTMatchersTutorial.html) to build the project. Make sure to build with `-DLLVM_ENABLE_RTTI=ON`.

Expand Down
2 changes: 1 addition & 1 deletion deployment/dockerfiles/linux/centos7_64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ make -j8 && \
make -j8 install && rm -Rf /qt

# LLVM/Clang
ARG LLVM_VERSION=10.0.0
ARG LLVM_VERSION=11.0.0
RUN mkdir -p /llvm && cd /llvm && \
wget https://github.com/llvm/llvm-project/releases/download/llvmorg-${LLVM_VERSION}/llvm-project-${LLVM_VERSION}.tar.xz && \
tar xvf llvm-project-${LLVM_VERSION}.tar.xz && \
Expand Down
6 changes: 3 additions & 3 deletions deployment/dockerfiles/linux/centos7_64/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ based on our gcc Docker images
Software
--------

* Qt 5.9.1
* LLVM/Clang 5.0.0
* Boost 1.64.0
* Qt 5.12.6
* LLVM/Clang 10.0.0
* Boost 1.67.0
* Ninja
2 changes: 1 addition & 1 deletion deployment/dockerfiles/linux/centos7_64_base/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Base 64 bit Image for Sourcetrail
=================================

Based on centos:6
Based on centos:7

Software
--------
Expand Down
2 changes: 1 addition & 1 deletion deployment/dockerfiles/linux/travis_ci/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM coatisoftware/centos7_64_qt_llvm:qt5126-llvm1000
FROM coatisoftware/centos7_64_qt_llvm:qt5126-llvm1100

COPY entrypoint.sh /entrypoint.sh

Expand Down

0 comments on commit 5cae072

Please sign in to comment.