Skip to content

Commit 744ff1b

Browse files
committed
Update Jammy dockerfile
Jammy uses the gcc-11 aligned c/c++ libraries and runtimes. If you install any tools from the Ubuntu-official repositories (e.g libtool), you'll get error messages because clang will look for the C++ headers aligned with the newest gcc version (11), instead of what we installed (9), so folks need to know to manually install libstdc++11-dev if they want to do that, which is bad.
1 parent 35e6af7 commit 744ff1b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

5.8/ubuntu/22.04/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ RUN export DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true && ap
1111
libc6-dev \
1212
libcurl4-openssl-dev \
1313
libedit2 \
14-
libgcc-9-dev \
14+
libgcc-11-dev \
1515
libpython3-dev \
1616
libsqlite3-0 \
17-
libstdc++-9-dev \
17+
libstdc++-11-dev \
1818
libxml2-dev \
1919
libz3-dev \
2020
pkg-config \

0 commit comments

Comments
 (0)