Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: use clang toolchain for Ubuntu packaging #23

Merged
merged 1 commit into from
Sep 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions ubuntu-20.04.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ ENV TZ=Etc/UTC
ENV ARCH=x64

RUN apt-get -y update && \
apt-get -y install sudo wget git make pkg-config gcc-10 g++-10 \
apt-get -y install sudo wget git make pkg-config clang-12 clang++-12 \
autoconf binutils-dev libevent-dev acl-dev libfmt-dev libjemalloc-dev \
libdouble-conversion-dev libiberty-dev liblz4-dev liblzma-dev libssl-dev \
libboost-filesystem-dev libboost-program-options-dev libboost-system-dev \
Expand All @@ -39,8 +39,8 @@ RUN apt-get -y update && \
libdwarf-dev libelf-dev libgoogle-glog-dev libffi-dev libgdbm-dev \
libyaml-dev libncurses-dev libreadline-dev libutfcpp-dev libstdc++-10-dev

ENV CC=gcc-10
ENV CXX=g++-10
ENV CC=clang-12
ENV CXX=clang++-12

COPY tools /opt/tools

Expand Down