From f0b50e37156969dd2bf733571b13fd242c145dee Mon Sep 17 00:00:00 2001 From: Olivia Appleton Date: Mon, 22 Jul 2024 19:58:25 -0500 Subject: [PATCH] Also remove C++11, since clang here is min C++14 --- cplusplus/test_euler.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/cplusplus/test_euler.py b/cplusplus/test_euler.py index 3ed913ce..354d3195 100644 --- a/cplusplus/test_euler.py +++ b/cplusplus/test_euler.py @@ -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!")