From 35471f63e20f78499429ea122d92b20d82ae7e79 Mon Sep 17 00:00:00 2001 From: stubbiali Date: Fri, 15 May 2026 17:28:18 +0200 Subject: [PATCH] Remove clang-hip workaround --- src/CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 042a508..584af30 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -24,8 +24,6 @@ if (HWMALLOC_ENABLE_DEVICE) elseif (${HWMALLOC_DEVICE_RUNTIME} STREQUAL "hip") find_package(hip REQUIRED) target_link_libraries(hwmalloc PRIVATE hip::device) - # workaround for clang-hip - target_compile_options(hwmalloc PRIVATE $) endif() target_sources(hwmalloc PRIVATE device_${HWMALLOC_DEVICE_RUNTIME}.cpp)