Lines Matching +full:libcxxabi +full:-

7 #     http://www.apache.org/licenses/LICENSE-2.0
18 RUN apt-get update && apt-get install -y \
20 autotools-dev \
21 build-essential \
27 gcc-multilib \
33 libc6-dbg \
34 libc6-dev \
35 libgtest-dev \
40 python-dev \
41 python-setuptools \
42 python-yaml \
46 zip && apt-get clean
50 RUN apt-get update && apt-get install -y time && apt-get clean
53 RUN apt-get update && apt-get install -y python-pip && apt-get clean
54 RUN pip install --upgrade google-api-python-client
61 RUN apt-get update && apt-get install -y \
62 python-all-dev \
63 python3-all-dev \
64 python-pip
67 RUN pip install --upgrade pip==10.0.1
73 RUN apt-get update && apt-get -y install libgflags-dev libgtest-dev libc++-dev clang && apt-get cle…
76 # Use cmake 3.6 from jessie-backports
79 RUN echo "deb http://ftp.debian.org/debian jessie-backports main" | tee /etc/apt/sources.list.d/jes…
80 RUN apt-get update && apt-get install -t jessie-backports -y cmake && apt-get clean
85 RUN git clone -n -b release_38 http://llvm.org/git/llvm.git && \
87 RUN git clone -n -b release_38 http://llvm.org/git/clang.git && \
89 RUN git clone -n -b release_38 http://llvm.org/git/compiler-rt.git && \
90 cd compiler-rt && git checkout 3176922 && cd ..
91 RUN git clone -n -b release_38 \
92 http://llvm.org/git/clang-tools-extra.git && cd clang-tools-extra && \
94 RUN git clone -n -b release_38 http://llvm.org/git/libcxx.git && \
96 RUN git clone -n -b release_38 http://llvm.org/git/libcxxabi.git && \
97 cd libcxxabi && git checkout 8d4e51d && cd ..
100 RUN mv compiler-rt llvm/projects
101 RUN mv clang-tools-extra llvm/tools/clang/tools
103 RUN mv libcxxabi llvm/projects
105 RUN mkdir llvm-build
106 RUN cd llvm-build && cmake \
107 -DCMAKE_BUILD_TYPE:STRING=Release \
108 -DCMAKE_INSTALL_PREFIX:STRING=/usr \
109 -DLLVM_TARGETS_TO_BUILD:STRING=X86 \
111 RUN make -C llvm-build -j 12 && make -C llvm-build install && rm -rf llvm-build
116 RUN clang++ -c -g -O2 -std=c++11 llvm/lib/Fuzzer/*.cpp -IFuzzer
119 RUN rm -f Fuzzer*.o