sym link clang in cross dockerfile

This commit is contained in:
realbigsean 2023-01-03 09:25:02 -05:00
parent c4a41e8f55
commit 786d9834f5
No known key found for this signature in database
GPG Key ID: B372B64D866BF8CC

View File

@ -9,6 +9,6 @@ RUN apt-get install -y unzip && \
unzip protoc.zip -d /usr && \
chmod +x /usr/bin/protoc
RUN apt-get install -y cmake clang-3.9
RUN apt-get install -y cmake clang-3.9 && ln -s ../lib/llvm-3.9/bin/clang /usr/bin/clang
ENV PROTOC=/usr/bin/protoc