File tree Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Expand file tree Collapse file tree 4 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -32,10 +32,10 @@ RUN dnf -y install epel-release && \
32
32
libxml2-devel \
33
33
libedit-devel \
34
34
python3 \
35
- ninja && \
35
+ make && \
36
36
dnf clean all
37
37
38
- # Download and build LLVM 7.1.0 for all architectures (consistency)
38
+ # Download and build LLVM 7.1.0 for all architectures
39
39
RUN curl -sSf -L -O https://github.com/llvm/llvm-project/releases/download/llvmorg-7.1.0/llvm-7.1.0.src.tar.xz && \
40
40
tar -xf llvm-7.1.0.src.tar.xz && \
41
41
cd llvm-7.1.0.src && \
@@ -46,7 +46,7 @@ RUN curl -sSf -L -O https://github.com/llvm/llvm-project/releases/download/llvmo
46
46
else \
47
47
TARGETS="AArch64;NVPTX" ; \
48
48
fi && \
49
- cmake -G Ninja \
49
+ cmake \
50
50
-DCMAKE_BUILD_TYPE=Release \
51
51
-DLLVM_TARGETS_TO_BUILD="$TARGETS" \
52
52
-DLLVM_BUILD_LLVM_DYLIB=ON \
@@ -60,8 +60,8 @@ RUN curl -sSf -L -O https://github.com/llvm/llvm-project/releases/download/llvmo
60
60
-DLLVM_ENABLE_TERMINFO=ON \
61
61
-DCMAKE_INSTALL_PREFIX=/usr \
62
62
.. && \
63
- ninja -j$(nproc) && \
64
- ninja install && \
63
+ make -j$(nproc) && \
64
+ make install && \
65
65
cd ../.. && \
66
66
rm -rf llvm-7.1.0.src* && \
67
67
ln -s /usr/bin/llvm-config /usr/bin/llvm-config-7 && \
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -qq -y install \
35
35
ninja-build && \
36
36
rm -rf /var/lib/apt/lists/*
37
37
38
- # Download and build LLVM 7.1.0 for all architectures (consistency)
38
+ # Download and build LLVM 7.1.0 for all architectures
39
39
RUN curl -sSf -L -O https://github.com/llvm/llvm-project/releases/download/llvmorg-7.1.0/llvm-7.1.0.src.tar.xz && \
40
40
tar -xf llvm-7.1.0.src.tar.xz && \
41
41
cd llvm-7.1.0.src && \
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -qq -y install \
35
35
ninja-build && \
36
36
rm -rf /var/lib/apt/lists/*
37
37
38
- # Download and build LLVM 7.1.0 for all architectures (consistency)
38
+ # Download and build LLVM 7.1.0 for all architectures
39
39
RUN curl -sSf -L -O https://github.com/llvm/llvm-project/releases/download/llvmorg-7.1.0/llvm-7.1.0.src.tar.xz && \
40
40
tar -xf llvm-7.1.0.src.tar.xz && \
41
41
cd llvm-7.1.0.src && \
Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -qq -y install \
35
35
ninja-build && \
36
36
rm -rf /var/lib/apt/lists/*
37
37
38
- # Download and build LLVM 7.1.0 for all architectures (consistency)
38
+ # Download and build LLVM 7.1.0 for all architectures
39
39
RUN curl -sSf -L -O https://github.com/llvm/llvm-project/releases/download/llvmorg-7.1.0/llvm-7.1.0.src.tar.xz && \
40
40
tar -xf llvm-7.1.0.src.tar.xz && \
41
41
cd llvm-7.1.0.src && \
You can’t perform that action at this time.
0 commit comments