From f4be2fbc0bfceabb4a19581588f49e459b3cc7cf Mon Sep 17 00:00:00 2001 From: Rahul Garg Date: Fri, 2 Oct 2020 16:08:22 +0000 Subject: [PATCH] Clean up unused options Fixes SWDEV-253092 Change-Id: Ic820c4d7bec1130978b47094f3ad9764e40e6a1f [ROCm/hip commit: bdcd4143de9320c83d5cd2490eb53cc577041c6d] --- projects/hip/hip-config.cmake.in | 6 ------ 1 file changed, 6 deletions(-) diff --git a/projects/hip/hip-config.cmake.in b/projects/hip/hip-config.cmake.in index d5af845cd6..6dfbd527cd 100644 --- a/projects/hip/hip-config.cmake.in +++ b/projects/hip/hip-config.cmake.in @@ -206,15 +206,9 @@ if(HIP_COMPILER STREQUAL "clang") endif() # Add support for __fp16 and _Float16, explicitly link with compiler-rt - set_property(TARGET hip::host APPEND PROPERTY - INTERFACE_COMPILE_OPTIONS -L${HIP_CLANG_INCLUDE_PATH}/../lib/linux -lclang_rt.builtins-x86_64 - ) set_property(TARGET hip::host APPEND PROPERTY INTERFACE_LINK_LIBRARIES -L${HIP_CLANG_INCLUDE_PATH}/../lib/linux -lclang_rt.builtins-x86_64 ) - set_property(TARGET hip::device APPEND PROPERTY - INTERFACE_COMPILE_OPTIONS -L${HIP_CLANG_INCLUDE_PATH}/../lib/linux -lclang_rt.builtins-x86_64 - ) set_property(TARGET hip::device APPEND PROPERTY INTERFACE_LINK_LIBRARIES -L${HIP_CLANG_INCLUDE_PATH}/../lib/linux -lclang_rt.builtins-x86_64 )