3
0
Fork 0
mirror of https://github.com/YosysHQ/yosys synced 2025-04-23 17:15:33 +00:00

Make C++17 compiler required

This commit is contained in:
Miodrag Milanovic 2024-06-17 16:55:36 +02:00
parent 74a1dd99ac
commit 141a2e3638
3 changed files with 5 additions and 9 deletions

View file

@ -64,11 +64,11 @@ jobs:
$CXX --version
# minimum standard
- name: Build C++11
- name: Build C++17
shell: bash
run: |
make config-$CC_SHORT
make -j$procs CXXSTD=c++11 compile-only
make -j$procs CXXSTD=c++17 compile-only
# maximum standard, only on newest compilers
- name: Build C++20