From 1637f46394c6b3dee6ebcd8e3807a0eccffbf356 Mon Sep 17 00:00:00 2001 From: Ranjith Ramakrishnan Date: Tue, 11 Jun 2024 19:07:04 -0700 Subject: [PATCH] SWDEV-467162 - Temporarily disable hip-lang test for static builds Hip-lang test is failing in static build environment. Disabling it for time being TODO: Need to renable the test once its fixed Change-Id: Ie15f02a157a13b3f105596ad673a8a1da6e78b67 [ROCm/hip-tests commit: c7e0c657794cf5a161c3ab1655e2174a42340045] --- projects/hip-tests/samples/2_Cookbook/CMakeLists.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/projects/hip-tests/samples/2_Cookbook/CMakeLists.txt b/projects/hip-tests/samples/2_Cookbook/CMakeLists.txt index cbe89588a7..aa83680207 100644 --- a/projects/hip-tests/samples/2_Cookbook/CMakeLists.txt +++ b/projects/hip-tests/samples/2_Cookbook/CMakeLists.txt @@ -39,5 +39,9 @@ add_subdirectory(17_llvm_ir_to_executable) add_subdirectory(18_cmake_hip_device) add_subdirectory(19_cmake_lang) add_subdirectory(21_cmake_hip_cxx_clang) -add_subdirectory(22_cmake_hip_lang) +# Disable hip-lang test for static builds. +# Once the issues are fixed, will enable the test +if(BUILD_SHARED_LIBS) + add_subdirectory(22_cmake_hip_lang) +endif() add_subdirectory(23_cmake_hiprtc)