Skip to content

Commit

Permalink
Fixed compilation of libaom on ARM ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
dooman87 committed Dec 25, 2023
1 parent 79fb3f2 commit 43ffc76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile.ubuntu
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ ARG LIBJXL_VERSION=0.8.2

RUN apt-get -y update && \
apt-get -y upgrade && \
apt-get install -y git make gcc pkg-config autoconf curl g++ cmake clang \
apt-get install -y git make gcc pkg-config autoconf curl g++ cmake clang-11 \
# libaom
yasm \
# libheif
Expand All @@ -24,7 +24,7 @@ RUN apt-get -y update && \
# Install manually to prevent deleting with -dev packages
libxext6 libbrotli1 && \
# Building libjxl
export CC=clang CXX=clang++ && \
export CC=clang-11 CXX=clang++-11 && \
git clone -b v${LIBJXL_VERSION} https://github.com/libjxl/libjxl.git --depth 1 --recursive --shallow-submodules && \
cd libjxl && \
mkdir build && \
Expand Down

0 comments on commit 43ffc76

Please sign in to comment.