From dded2075afb448eee03ba7a977a7377aabedfa5e Mon Sep 17 00:00:00 2001 From: Danilo Piparo Date: Fri, 9 Jan 2026 10:45:45 +0100 Subject: [PATCH] Exclude benchmark on macOS This is done because std::experimental::simd is not defined for the standard development environment of that platform yet. --- root/math/genvector/CMakeLists.txt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/root/math/genvector/CMakeLists.txt b/root/math/genvector/CMakeLists.txt index 518ac1fd..7680a119 100644 --- a/root/math/genvector/CMakeLists.txt +++ b/root/math/genvector/CMakeLists.txt @@ -1,4 +1,6 @@ -RB_ADD_GBENCHMARK(GenVectorBenchmarks - Cartesian3DBenchmarks.cxx - LABEL short - LIBRARIES GenVector MathCore) +if(NOT CMAKE_SYSTEM_NAME MATCHES Darwin) + RB_ADD_GBENCHMARK(GenVectorBenchmarks + Cartesian3DBenchmarks.cxx + LABEL short + LIBRARIES GenVector MathCore) +endif() \ No newline at end of file