Skip to content

Commit

Permalink
Update Linux build to GCC-11
Browse files Browse the repository at this point in the history
  • Loading branch information
lhog committed Sep 22, 2022
1 parent 94b38a9 commit 6bb9c2c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker-build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ RUN apt-get update -y; \
# GCC-10 PPA (linux-64)
RUN add-apt-repository ppa:ubuntu-toolchain-r/test -y; \
apt update -y; \
apt install -y gcc-10 g++-10
apt install -y gcc-11 g++-11

# Install Build Dependencies (linux-64)
RUN apt-get install --fix-missing -y \
Expand Down
4 changes: 2 additions & 2 deletions docker-build/scripts/linux-64.cmake
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
SET(CMAKE_SYSTEM_NAME Linux)
SET(CMAKE_C_COMPILER gcc-10)
SET(CMAKE_CXX_COMPILER g++-10)
SET(CMAKE_C_COMPILER gcc-11)
SET(CMAKE_CXX_COMPILER g++-11)

0 comments on commit 6bb9c2c

Please sign in to comment.