From 65b2a6146f1660a8ad3a27634eaf4e5f1fd0735a Mon Sep 17 00:00:00 2001 From: Baptiste Wicht Date: Fri, 5 Jul 2024 12:03:27 +0200 Subject: [PATCH] Upgrade GCC as well --- .github/workflows/make.yml | 4 ++-- README.rst | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/make.yml b/.github/workflows/make.yml index 9c91a04..0b4f9ba 100644 --- a/.github/workflows/make.yml +++ b/.github/workflows/make.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - compiler: [g++-13,clang++-18] + compiler: [g++-14,clang++-18] steps: - name: Checkout code @@ -22,7 +22,7 @@ jobs: submodules: recursive - name: Install GCC compiler - run: sudo apt install g++-13 + run: sudo apt install g++-14 - name: install LLVM compiler run: | diff --git a/README.rst b/README.rst index d4a71c5..0c633fc 100644 --- a/README.rst +++ b/README.rst @@ -78,7 +78,7 @@ For other systems, you'll have to install from sources. Build from source ----------------- -A modern compiler is necessary. I am working with GCC 13 and clang 18. You need to set the +A modern compiler is necessary. I am working with GCC 14 and clang 18. You need to set the $CXX variable before executing make. Linux