Lines Matching +full:clang +full:- +full:everything
2 # The only "Skia-specific" thing is the depot_tools, everything else is pretty generic.
4 # The base Docker image (butomo1989/docker-android-x86-8.1:1.4-p1) has an android emulator
6 # docker run --privileged -d --name android_em -e DEVICE="Samsung Galaxy S6" butomo1989/docker-andr…
8 # docker exec -it android_em /bin/bash
12 FROM butomo1989/docker-android-x86-8.1:1.4-p1
14 RUN apt-get update && apt-get upgrade -y && \
15 apt-get install -y \
16 clang-6.0 \
24 RUN wget -O /root/android-ndk-r20-linux-x86_64.zip https://dl.google.com/android/repository/android…
25 unzip /root/android-ndk-r20-linux-x86_64.zip && \
26 rm -f /root/android-ndk-r20-linux-x86_64.zip
29 RUN yes | sdkmanager ndk-bundle "lldb;3.1" "cmake;3.6.4111459"
31 RUN update-alternatives --install /usr/bin/cc cc /usr/lib/llvm-6.0/bin/clang 20 && \
32 update-alternatives --install /usr/bin/c++ c++ /usr/lib/llvm-6.0/bin/clang++ 20
34 ENV CC="/usr/lib/llvm-6.0/bin/clang" \
35 CXX="/usr/lib/llvm-6.0/bin/clang++" \
36 PATH=/usr/lib/llvm-6.0/bin:$PATH
40 ENV ANDROID_NDK=/root/android-ndk-r20