From ffb041d204de6536b19c87e612777124d34fc62f Mon Sep 17 00:00:00 2001 From: Tom Trevethan Date: Thu, 27 Aug 2026 14:16:55 +0100 Subject: [PATCH 1/2] broaden the CMake guard for simplicity to also match Clang on any platform --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index d3062f67dd..08871f28d9 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -114,7 +114,7 @@ target_link_libraries(elementssimplicity ) # macOS Apple Clang is stricter than Linux GCC on this vendored code -if(APPLE) +if(CMAKE_C_COMPILER_ID MATCHES "Clang") target_compile_options(elementssimplicity PRIVATE -Wno-error=conditional-uninitialized -Wno-error=implicit-fallthrough From 8d5fc2c81567ee580c0658be289ce6e5e39d1f4f Mon Sep 17 00:00:00 2001 From: Tom Trevethan Date: Thu, 27 Aug 2026 14:17:47 +0100 Subject: [PATCH 2/2] temporary comment change to test multiple commit CI --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 08871f28d9..cbc9e2f6e3 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -113,7 +113,7 @@ target_link_libraries(elementssimplicity core_interface ) -# macOS Apple Clang is stricter than Linux GCC on this vendored code +# Clang is stricter than Linux GCC on this vendored code if(CMAKE_C_COMPILER_ID MATCHES "Clang") target_compile_options(elementssimplicity PRIVATE -Wno-error=conditional-uninitialized