summaryrefslogtreecommitdiff
path: root/dev-libs/rocm-hostcall/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-01-19 17:59:37 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-01-19 17:59:37 +0000
commit150a86a9cb006b4800d6517d58532b8a556fec1e (patch)
tree0cea769c7bef669c4dfe19e7805593f6f34033fb /dev-libs/rocm-hostcall/files
parent1cb0dd91756f77b25d6cc22318dc85187ed084cb (diff)
gentoo auto-resync : 19:01:2023 - 17:59:37
Diffstat (limited to 'dev-libs/rocm-hostcall/files')
-rw-r--r--dev-libs/rocm-hostcall/files/rocm-hostcall-2.7.0-install-correctly.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/dev-libs/rocm-hostcall/files/rocm-hostcall-2.7.0-install-correctly.patch b/dev-libs/rocm-hostcall/files/rocm-hostcall-2.7.0-install-correctly.patch
deleted file mode 100644
index f419674886a7..000000000000
--- a/dev-libs/rocm-hostcall/files/rocm-hostcall-2.7.0-install-correctly.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-https://github.com/RadeonOpenCompute/ROCm-CompilerSupport/pull/18
-
-From 345025de5c6c470e36505ff70978b168c05a1a71 Mon Sep 17 00:00:00 2001
-From: Craig Andrews <candrews@integralblue.com>
-Date: Wed, 31 Jul 2019 11:18:56 -0400
-Subject: [PATCH] Install to standard locations using GNUInstallDirs
-
-Some distributions require 64 bit libraries to be installed to lib64, for example.
-Using GNUInstallDirs ensures that files are installed to the expected locations.
----
- CMakeLists.txt | 8 +++++---
- 1 file changed, 5 insertions(+), 3 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 0f524e6..009bab7 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -5,6 +5,8 @@ if (NOT UNIX)
- message(FATAL_ERROR "No Windows support due to lack of signals")
- endif()
-
-+include(GNUInstallDirs)
-+
- find_path(HSA_HEADER hsa/hsa.h PATHS /opt/rocm/include)
- if (NOT EXISTS ${HSA_HEADER})
- message(FATAL_ERROR "Cannot find HSA headers. Please check the CMAKE_PREFIX_PATH")
-@@ -34,9 +36,9 @@ target_compile_options(amd_hostcall
- target_compile_definitions(amd_hostcall
- PRIVATE "${AMD_HOSTCALL_PRIVATE_COMPILE_DEFINITIONS}")
-
--set(INCLUDE_INSTALL_DIR include)
--set(LIB_INSTALL_DIR lib)
--set(SHARE_INSTALL_DIR share)
-+set(INCLUDE_INSTALL_DIR ${CMAKE_INSTALL_INCLUDEDIR})
-+set(LIB_INSTALL_DIR ${CMAKE_INSTALL_LIBDIR})
-+set(SHARE_INSTALL_DIR ${CMAKE_INSTALL_DATADIR})
- set(CONFIG_INSTALL_DIR ${LIB_INSTALL_DIR}/cmake/amd_hostcall)
-
- install(TARGETS amd_hostcall