commit: fa9f0e63433e97d83563bde9bb596d4a69d362ed Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net> AuthorDate: Mon Apr 5 16:40:38 2021 +0000 Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net> CommitDate: Mon Apr 5 16:41:35 2021 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=fa9f0e63
dev-util/rocm-clang-ocl: add 4.1.0 Co-authored-by: Wilfried Holzke Closes: https://github.com/gentoo/sci/pull/1077 Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net> .../rocm-clang-ocl/rocm-clang-ocl-4.1.0.ebuild | 31 ++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/dev-util/rocm-clang-ocl/rocm-clang-ocl-4.1.0.ebuild b/dev-util/rocm-clang-ocl/rocm-clang-ocl-4.1.0.ebuild new file mode 100644 index 000000000..1429be33c --- /dev/null +++ b/dev-util/rocm-clang-ocl/rocm-clang-ocl-4.1.0.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +DESCRIPTION="OpenCL compilation with clang compiler" +HOMEPAGE="https://github.com/RadeonOpenCompute/clang-ocl.git" +SRC_URI="https://github.com/RadeonOpenCompute/clang-ocl/archive/rocm-${PV}.tar.gz -> rocm-clang-ocl-${PV}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND="dev-libs/rocm-opencl-runtime" +DEPEND=" + dev-util/rocm-cmake + ${RDEPEND}" + +S="${WORKDIR}/clang-ocl-rocm-${PV}" + +src_prepare() { + sed -e "s:HINTS \${CXX_COMPILER_PATH}/bin:NO_DEFAULT_PATH:" \ + -e "s:/opt/rocm/llvm/bin:${EPREFIX}/usr/lib/llvm/roc/bin:" \ + -e "/AMDDeviceLibs PATHS/s:/opt/rocm:${EPREFIX}/usr/lib/cmake/AMDDeviceLibs:" \ + -e "s:\${AMD_DEVICE_LIBS_PREFIX}/amdgcn/bitcode:${EPREFIX}/usr/lib/amdgcn/bitcode:" \ + -i CMakeLists.txt || die + + cmake_src_prepare +}
