You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-util/spirv-llvm-translator/spirv-llvm-translator-11.0....

63 lines
1.5 KiB

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
CMAKE_ECLASS=cmake
inherit cmake-multilib flag-o-matic llvm
EGIT_COMMIT="d6dc999eee381158a26f048a333467c9ce7e77f2"
MY_PN="SPIRV-LLVM-Translator"
MY_P="${MY_PN}-${EGIT_COMMIT}"
DESCRIPTION="Bi-directional translator between SPIR-V and LLVM IR"
HOMEPAGE="https://github.com/KhronosGroup/SPIRV-LLVM-Translator"
SRC_URI="https://github.com/KhronosGroup/${MY_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
LICENSE="UoI-NCSA"
SLOT="11"
KEYWORDS="~amd64"
IUSE="test tools"
# I have yet to see a non-release spirv-llvm-translator ebuild pass ANY tests.
# This is probably something silly like the test suite expecting different
# directory names but I really can't be bothered to debug VCS snapshots.
RESTRICT="test"
S="${WORKDIR}/${MY_P}"
COMMON="sys-devel/clang:11=[${MULTILIB_USEDEP}]"
DEPEND="${COMMON}"
RDEPEND="${COMMON}"
BDEPEND="test? ( dev-python/lit )"
REQUIRED_USE="test? ( tools )"
LLVM_MAX_SLOT=11
PATCHES=(
"${FILESDIR}"/${PN}-8.0.0.1-no_pkgconfig_files.patch
)
src_prepare() {
append-flags -fPIC
cmake_src_prepare
}
multilib_src_configure() {
local mycmakeargs=(
-DCMAKE_INSTALL_PREFIX="$(get_llvm_prefix ${LLVM_MAX_SLOT})"
-DLLVM_BUILD_TOOLS=$(usex tools "ON" "OFF")
$(usex test "-DLLVM_INCLUDE_TESTS=ON" "")
)
cmake_src_configure
}
multilib_src_test() {
# Some tests fail on amd64 when ABI==x86
if multilib_is_native_abi; then
lit "${BUILD_DIR}/test" || die "Error running tests for ABI ${ABI}"
fi
}