Fix build failure for the openmp-target example when building in docker. (#197)

- Add cmake formatting rule for `rocprofiler-systems-custom-compilation`
- Resolve build failure observed with the `openmp-target` example when building in some environments
  - Observed in our docker images
  - Ensure `libomptarget-amdgpu-gfx*.bc` files are found
This commit is contained in:
David Galiffi
2025-05-05 21:49:46 -04:00
کامیت شده توسط GitHub
والد f7c7cd297e
کامیت 96b31d92c3
4فایلهای تغییر یافته به همراه26 افزوده شده و 10 حذف شده
@@ -38,12 +38,12 @@ else()
AND USE_CLANG_OMP)
target_compile_options(openmp-common PUBLIC -W -Wall -fopenmp=libomp)
target_link_libraries(openmp-common PUBLIC ${LIBOMP_LIBRARY})
rocprofiler_systems_custom_compilation(COMPILER ${CLANGXX_EXECUTABLE} TARGET
openmp-common)
rocprofiler_systems_custom_compilation(COMPILER ${CLANGXX_EXECUTABLE} TARGET
openmp-cg)
rocprofiler_systems_custom_compilation(COMPILER ${CLANGXX_EXECUTABLE} TARGET
openmp-lu)
rocprofiler_systems_custom_compilation(COMPILER ${CLANGXX_EXECUTABLE}
TARGET openmp-common)
rocprofiler_systems_custom_compilation(COMPILER ${CLANGXX_EXECUTABLE}
TARGET openmp-cg)
rocprofiler_systems_custom_compilation(COMPILER ${CLANGXX_EXECUTABLE}
TARGET openmp-lu)
set(ROCPROFSYS_OPENMP_USING_LIBOMP_LIBRARY
ON
CACHE INTERNAL "Used by rocprofiler-systems testing" FORCE)
@@ -92,8 +92,8 @@ set_target_properties(
OUTPUT_NAME "openmp-target"
POSITION_INDEPENDENT_CODE ON)
rocprofiler_systems_custom_compilation(TARGET openmp-target-lib COMPILER
${OMP_TARGET_COMPILER})
rocprofiler_systems_custom_compilation(TARGET openmp-target-lib
COMPILER ${OMP_TARGET_COMPILER})
add_executable(openmp-target)
target_sources(openmp-target PRIVATE main.cpp)
@@ -106,5 +106,5 @@ set_target_properties(
"${OMP_TARGET_COMPILER_DIR}/llvm/lib:${OMP_TARGET_COMPILER_DIR}/lib"
POSITION_INDEPENDENT_CODE ON)
rocprofiler_systems_custom_compilation(TARGET openmp-target COMPILER
${OMP_TARGET_COMPILER})
rocprofiler_systems_custom_compilation(TARGET openmp-target
COMPILER ${OMP_TARGET_COMPILER})