diff options
author | 2019-08-13 15:22:52 -0400 | |
---|---|---|
committer | 2019-08-13 20:27:11 -0400 | |
commit | c1059d81c53fe153e46c07738756125d5f616847 (patch) | |
tree | 417550eeca6adaf6920c43809226611194c05d0d /sys-devel | |
parent | sys-devel/llvm-roc: add libraries to the LDPATH; no docs (diff) | |
download | gentoo-c1059d81c53fe153e46c07738756125d5f616847.tar.gz gentoo-c1059d81c53fe153e46c07738756125d5f616847.tar.bz2 gentoo-c1059d81c53fe153e46c07738756125d5f616847.zip |
sys-devel/llvm-roc: Drop old version
Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: Craig Andrews <candrews@gentoo.org>
Diffstat (limited to 'sys-devel')
-rw-r--r-- | sys-devel/llvm-roc/llvm-roc-2.6.0.ebuild | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/sys-devel/llvm-roc/llvm-roc-2.6.0.ebuild b/sys-devel/llvm-roc/llvm-roc-2.6.0.ebuild deleted file mode 100644 index 63d3cc7cf47e..000000000000 --- a/sys-devel/llvm-roc/llvm-roc-2.6.0.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit cmake-utils - -DESCRIPTION="Radeon Open Compute llvm,lld,clang" -HOMEPAGE="https://github.com/RadeonOpenCompute/ROCm/" -SRC_URI="https://github.com/RadeonOpenCompute/llvm/archive/roc-ocl-${PV}.tar.gz -> llvm-roc-ocl-${PV}.tar.gz - https://github.com/RadeonOpenCompute/clang/archive/roc-${PV}.tar.gz -> clang-roc-${PV}.tar.gz - https://github.com/RadeonOpenCompute/lld/archive/roc-ocl-${PV}.tar.gz -> lld-roc-ocl-${PV}.tar.gz" - -LICENSE="UoI-NCSA rc BSD public-domain" -SLOT="0" -KEYWORDS="~amd64" -IUSE="" - -RDEPEND="virtual/cblas - dev-libs/rocr-runtime" -DEPEND="${RDEPEND}" - -CMAKE_BUILD_TYPE=RelWithDebInfo - -S="${WORKDIR}/llvm-roc-ocl-${PV}" - -src_unpack() { - unpack ${A} - ln -s "${WORKDIR}/clang-roc-${PV}" "${WORKDIR}/llvm-roc-ocl-${PV}/tools/clang" - ln -s "${WORKDIR}/lld-roc-ocl-${PV}" "${WORKDIR}/llvm-roc-ocl-${PV}/tools/lld" -} - -src_configure() { - local mycmakeargs=( - -DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr/lib/llvm/roc" - -DLLVM_TARGETS_TO_BUILD="AMDGPU;X86" "${S}" - ) - cmake-utils_src_configure -} |