build: Disable valgrind on Clang+ARM builds

This commit is contained in:
Gabriel Ferreira
2025-03-08 18:41:55 +00:00
parent b08e755f07
commit 4ff5c7a263

View File

@@ -33,6 +33,10 @@ if(CLANG)
if(${NS3_COLORED_OUTPUT} OR "$ENV{CLICOLOR}")
add_definitions(-fcolor-diagnostics) # colorize clang++ output
endif()
if("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "aarch64")
# see https://gitlab.com/nsnam/ns-3-dev/-/issues/932
add_compile_definitions(NVALGRIND)
endif()
endif()
set(GCC FALSE)