You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 13, 2025. It is now read-only.
* Introduced check for recursive clone of the repository
* Added cmake error if libclang_rt file is not available with the selected compiler
(required by rocblas benchmarks)
# Verify that libclang_rt.builtins exists for current compiler
96
+
if(EXISTS${CLANGRT_BUILTINS} )
97
+
message("libclang_rt found at "${CLANGRT_BUILTINS})
98
+
else()
99
+
message(FATAL_ERROR"libclang_rt not found at "${CLANGRT_BUILTINS}
100
+
"\nCheck library availability for current CXX compiler. "
101
+
"Using HIP_CXX_COMPILER option, set another compiler compatible with ${CMAKE_CXX_COMPILER_ID}${CMAKE_CXX_COMPILER_VERSION} that has libclang_rt.builtins for x86_64."
102
+
"If not possible skip rocBLAS benchmarks compilation")
103
+
endif()
104
+
else()
105
+
message(WARNING"using CLANGRT_BUILTINS defined by user at "${CLANGRT_BUILTINS})
0 commit comments