Remove symlink to lld from build images

This commit is contained in:
alesapin 2020-02-21 18:49:53 +03:00
parent ee710dd1f7
commit 93fddc7b46
2 changed files with 6 additions and 2 deletions

View File

@ -43,7 +43,9 @@ RUN apt-get update -y \
rename \
wget
RUN ln -s /usr/bin/lld-8 /usr/bin/ld.lld
# This symlink required by gcc to find lld compiler but currently we have
# problems with query profiler when gcc use lld as linker
# RUN ln -s /usr/bin/lld-8 /usr/bin/ld.lld
ENV CC=clang-8
ENV CXX=clang++-8

View File

@ -74,7 +74,9 @@ RUN curl -O https://clickhouse-builds.s3.yandex.net/utils/dpkg-deb
RUN chmod +x dpkg-deb
RUN cp dpkg-deb /usr/bin
RUN ln -s /usr/bin/lld-8 /usr/bin/ld.lld
# This symlink required by gcc to find lld compiler but currently we have
# problems with query profiler when gcc use lld as linker
# RUN ln -s /usr/bin/lld-8 /usr/bin/ld.lld
COPY build.sh /