Lines Matching +full:libcxxabi +full:-
7 # http://www.apache.org/licenses/LICENSE-2.0
17 RUN apt-get update && apt-get install -y \
24 && apt-get clean
26 RUN git clone -b release_36 http://llvm.org/git/llvm.git
27 RUN git clone -b release_36 http://llvm.org/git/clang.git
28 RUN git clone -b release_36 http://llvm.org/git/compiler-rt.git
29 RUN git clone -b release_36 http://llvm.org/git/clang-tools-extra.git
30 RUN git clone -b release_36 http://llvm.org/git/libcxx.git
31 RUN git clone -b release_36 http://llvm.org/git/libcxxabi.git
34 RUN mv compiler-rt llvm/projects
35 RUN mv clang-tools-extra llvm/tools/clang/tools
37 RUN mv libcxxabi llvm/projects
39 RUN mkdir llvm-build
40 RUN cd llvm-build && cmake \
41 -DCMAKE_BUILD_TYPE:STRING=Release \
42 -DLLVM_TARGETS_TO_BUILD:STRING=X86 \
44 RUN make -C llvm-build && make -C llvm-build install && rm -rf llvm-build