mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 06:48:18 -07:00
sys-libs/libomp: Bump to 11.0.0rc2
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
@@ -1,4 +1,5 @@
|
||||
DIST llvmorg-10.0.0.tar.gz 120804856 BLAKE2B 6b0254f5b913398cdcf2b2ec1ff219888706d2b79d5296590934714e42ac79f6a6547941ac2b1d2c4e6313dd18b6c7068e748aa6ac033e49fccbf5d355aa8191 SHA512 baa182d62fef1851836013ae8a1a00861ea89769778d67fb97b407a9de664e6c85da2af9c5b3f75d2bf34ff6b00004e531ca7e4b3115a26c0e61c575cf2303a0
|
||||
DIST llvmorg-10.0.1.tar.gz 120880730 BLAKE2B 30f19f56c4d1f6abcda5fec76256219d1e3c8a6ff1a1f152f94bfe362c07884339fe571ff7fe903ed3b3deb150b2fa868c387887a0dea2930dc08b81db71a5b1 SHA512 48078fff9293a87f1a973f3348f79506f04c3da774295f5eb67d74dd2d1aa94f0973f8ced3f4ab9e8339902071f82c603b43d5608ad7227046c4da769c5d2151
|
||||
DIST llvmorg-11.0.0-rc1.tar.gz 122688246 BLAKE2B 10ff3f08ff3780abb1d86ac67942e6aac52ff5daf820a2e3d23d8b79dbade1c5b1d398d0a577028d2d7c8759ab9a8b552a0305b5750310a015585c06cdadf844 SHA512 09564ed903902a5795fffaa4679badc30bf49739889a48074b5ae2c93bd29000cfb36a650208d5cae5d74899bade066f84b4aa023fc852eec246ff67bf64a267
|
||||
DIST llvmorg-11.0.0-rc2.tar.gz 122728230 BLAKE2B 7944adf41ec7cd82489666a0a38a857de628879d59a2e3bb566b67c18500092430db66ff214d45cb324128c874a74a72c367b452df3b88ec95b33c284dd35512 SHA512 25eb2879eb22e79a1e840ef24cf3f5eec602e947101db299393e06e3d09f2d1531eef214264636e1b511eafff7f51b1834d5a03976ccd088eb680745b147e9f3
|
||||
DIST llvmorg-9.0.1.tar.gz 113193320 BLAKE2B b86e405f2b8e00436045fd409fe19cdde75c797b1192c62a22b5ec75e6b4dc8e874a0f33008dc31562445e4cbe53a992b6f48c684255a6a1ef261e595b8b161f SHA512 fa88beeaae94b6d0cd9b5ba38658d0ffed8004035d7d8a4f95c3d31a709b88b581ae9bd7761333c8e5375c44b8f6be01768b5a3be901163159d7e6c43b71da59
|
||||
|
||||
104
sys-libs/libomp/libomp-11.0.0_rc2.ebuild
Normal file
104
sys-libs/libomp/libomp-11.0.0_rc2.ebuild
Normal file
@@ -0,0 +1,104 @@
|
||||
# Copyright 1999-2020 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=7
|
||||
|
||||
CMAKE_ECLASS=cmake
|
||||
PYTHON_COMPAT=( python3_{6..9} )
|
||||
inherit cmake-multilib linux-info llvm.org python-any-r1
|
||||
|
||||
DESCRIPTION="OpenMP runtime library for LLVM/clang compiler"
|
||||
HOMEPAGE="https://openmp.llvm.org"
|
||||
LLVM_COMPONENTS=( openmp )
|
||||
llvm.org_set_globals
|
||||
|
||||
LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
|
||||
SLOT="0"
|
||||
KEYWORDS=""
|
||||
IUSE="cuda hwloc kernel_linux offload ompt test"
|
||||
# CUDA works only with the x86_64 ABI
|
||||
REQUIRED_USE="offload? ( cuda? ( abi_x86_64 ) )"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
RDEPEND="
|
||||
hwloc? ( sys-apps/hwloc:0=[${MULTILIB_USEDEP}] )
|
||||
offload? (
|
||||
virtual/libelf:=[${MULTILIB_USEDEP}]
|
||||
dev-libs/libffi:=[${MULTILIB_USEDEP}]
|
||||
cuda? ( dev-util/nvidia-cuda-toolkit:= )
|
||||
)"
|
||||
# tests:
|
||||
# - dev-python/lit provides the test runner
|
||||
# - sys-devel/llvm provide test utils (e.g. FileCheck)
|
||||
# - sys-devel/clang provides the compiler to run tests
|
||||
DEPEND="${RDEPEND}"
|
||||
BDEPEND="dev-lang/perl
|
||||
offload? ( virtual/pkgconfig )
|
||||
test? (
|
||||
$(python_gen_any_dep 'dev-python/lit[${PYTHON_USEDEP}]')
|
||||
>=sys-devel/clang-6
|
||||
)"
|
||||
|
||||
python_check_deps() {
|
||||
has_version "dev-python/lit[${PYTHON_USEDEP}]"
|
||||
}
|
||||
|
||||
kernel_pds_check() {
|
||||
if use kernel_linux && kernel_is -lt 4 15 && kernel_is -ge 4 13; then
|
||||
local CONFIG_CHECK="~!SCHED_PDS"
|
||||
local ERROR_SCHED_PDS="\
|
||||
PDS scheduler versions >= 0.98c < 0.98i (e.g. used in kernels >= 4.13-pf11
|
||||
< 4.14-pf9) do not implement sched_yield() call which may result in horrible
|
||||
performance problems with libomp. If you are using one of the specified
|
||||
kernel versions, you may want to disable the PDS scheduler."
|
||||
|
||||
check_extra_config
|
||||
fi
|
||||
}
|
||||
|
||||
pkg_pretend() {
|
||||
kernel_pds_check
|
||||
}
|
||||
|
||||
pkg_setup() {
|
||||
use test && python-any-r1_pkg_setup
|
||||
}
|
||||
|
||||
multilib_src_configure() {
|
||||
local libdir="$(get_libdir)"
|
||||
local mycmakeargs=(
|
||||
-DOPENMP_LIBDIR_SUFFIX="${libdir#lib}"
|
||||
|
||||
-DLIBOMP_USE_HWLOC=$(usex hwloc)
|
||||
-DLIBOMP_OMPT_SUPPORT=$(usex ompt)
|
||||
|
||||
-DOPENMP_ENABLE_LIBOMPTARGET=$(usex offload)
|
||||
|
||||
# do not install libgomp.so & libiomp5.so aliases
|
||||
-DLIBOMP_INSTALL_ALIASES=OFF
|
||||
# disable unnecessary hack copying stuff back to srcdir
|
||||
-DLIBOMP_COPY_EXPORTS=OFF
|
||||
)
|
||||
use offload && mycmakeargs+=(
|
||||
# this is non-fatal and libomp checks for CUDA conditionally
|
||||
# to ABI, so we can just ignore passing the wrong value
|
||||
# on non-amd64 ABIs
|
||||
-DCMAKE_DISABLE_FIND_PACKAGE_CUDA=$(usex !cuda)
|
||||
)
|
||||
use test && mycmakeargs+=(
|
||||
# this project does not use standard LLVM cmake macros
|
||||
-DOPENMP_LLVM_LIT_EXECUTABLE="${EPREFIX}/usr/bin/lit"
|
||||
-DOPENMP_LIT_ARGS="$(get_lit_flags)"
|
||||
|
||||
-DOPENMP_TEST_C_COMPILER="$(type -P "${CHOST}-clang")"
|
||||
-DOPENMP_TEST_CXX_COMPILER="$(type -P "${CHOST}-clang++")"
|
||||
)
|
||||
cmake_src_configure
|
||||
}
|
||||
|
||||
multilib_src_test() {
|
||||
# respect TMPDIR!
|
||||
local -x LIT_PRESERVES_TMP=1
|
||||
|
||||
cmake_build check-libomp
|
||||
}
|
||||
Reference in New Issue
Block a user