set minimum gcc version to 5.0.

This is due to C++98 support being dropped, so 4.8 fails other libraries C++11 detection.
This commit is contained in:
Klemens Morgenstern
2023-08-15 13:59:42 +08:00
committed by Klemens Morgenstern
parent b0f6f9c39c
commit 915b80a157
4 changed files with 4 additions and 14 deletions

View File

@@ -26,16 +26,6 @@ jobs:
fail-fast: false
matrix:
include:
# gcc 4.7 not supported by beast
# minimum requirement is gcc 4.8
- toolset: gcc-4.8
cxxstd: "11"
os: ubuntu-22.04
container: ubuntu:16.04
install: g++-4.8
supported: true
# gcc 4.9 not supported by beast
# It dies with ICE when compiling
- toolset: gcc-5
cxxstd: "11,14,1z"
os: ubuntu-22.04