From 3ec05c631bd1c304383b219ff5add6d9cc526399 Mon Sep 17 00:00:00 2001 From: Bill Sacks Date: Wed, 6 Dec 2023 16:56:27 -0700 Subject: [PATCH] Change needed for pFUnit tests to pass on derecho --- test/unit/dynamic_vector/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/unit/dynamic_vector/CMakeLists.txt b/test/unit/dynamic_vector/CMakeLists.txt index 972a140..96a0391 100644 --- a/test/unit/dynamic_vector/CMakeLists.txt +++ b/test/unit/dynamic_vector/CMakeLists.txt @@ -7,7 +7,7 @@ if(${CMAKE_C_COMPILER_ID} STREQUAL GNU OR ${CMAKE_C_COMPILER_ID} STREQUAL Clang) set(${varname} ${CMAKE_C_COMPILER} -E -x c ${start_file} -o ${end_file} PARENT_SCOPE) endfunction() -elseif(${CMAKE_C_COMPILER_ID} STREQUAL Intel) +elseif(${CMAKE_C_COMPILER_ID} STREQUAL Intel OR ${CMAKE_C_COMPILER_ID} STREQUAL IntelLLVM) function(make_cpp_command varname start_file end_file) set(${varname} "${CMAKE_C_COMPILER} -E ${start_file} -o ${end_file}" PARENT_SCOPE)