Skip to content

Commit

Permalink
Also remove C++11, since clang here is min C++14
Browse files Browse the repository at this point in the history
  • Loading branch information
LivInTheLookingGlass committed Jul 23, 2024
1 parent 042c1bc commit f0b50e3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions cplusplus/test_euler.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,16 +107,17 @@
if IN_WINDOWS:
compilers.remove('CLANG+c++98')
compilers.remove('CLANG+c++03')
compilers.remove('CLANG+c++11')
if AOCC_BINARY != 'clang' and which(AOCC_BINARY):
compilers.extend(f'AOCC+{std}' for std in STANDARDS)
if which('icc'):
compilers.extend(f'ICC+{std}' for std in STANDARDS)
# if which('cl'):
# compilers.extend(f'CL+{std}' for std in STANDARDS)
# compilers.remove('CL+C++98')
# compilers.remove('CL+C++03')
# compilers.remove('CL+C++11')
# compilers.remove('CL+C++14')
# compilers.remove('CL+c++98')
# compilers.remove('CL+c++03')
# compilers.remove('CL+c++11')
# compilers.remove('CL+c++14')
if not compilers:
raise RuntimeError("No compilers detected!")

Expand Down

0 comments on commit f0b50e3

Please sign in to comment.