From 85715bc20fd93807c4bc0914e16dc83c4d7176d7 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 --- hipamd/hip-config.cmake.in | 6 ------ 1 file changed, 6 deletions(-) diff --git a/hipamd/hip-config.cmake.in b/hipamd/hip-config.cmake.in index d5af845cd6..6dfbd527cd 100644 --- a/hipamd/hip-config.cmake.in +++ b/hipamd/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 )