Skip to content

Commit

Permalink
also add g++13
Browse files Browse the repository at this point in the history
  • Loading branch information
joske committed Aug 23, 2023
1 parent 0fdca5e commit 008fcd8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Makefile
Expand Up @@ -59,6 +59,8 @@ ifeq ($(CLANG_WORKS),false)
#? Try to find a newer GCC version
ifeq ($(shell command -v g++-13 >/dev/null; echo $$?),0)
CXX := g++-13
else ifeq ($(shell command -v g++13 >/dev/null; echo $$?),0)
CXX := g++13
else ifeq ($(shell command -v g++-12 >/dev/null; echo $$?),0)
CXX := g++-12
else ifeq ($(shell command -v g++12 >/dev/null; echo $$?),0)
Expand Down

0 comments on commit 008fcd8

Please sign in to comment.