forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Michał Górny <[email protected]>
- Loading branch information
Showing
2 changed files
with
103 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,102 @@ | ||
# Copyright 1999-2021 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
PYTHON_COMPAT=( python3_{7..9} ) | ||
inherit cmake llvm llvm.org python-single-r1 toolchain-funcs | ||
|
||
DESCRIPTION="The LLVM debugger" | ||
HOMEPAGE="https://llvm.org/" | ||
|
||
LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA" | ||
SLOT="0" | ||
KEYWORDS="" | ||
IUSE="+libedit lzma ncurses +python test" | ||
REQUIRED_USE=${PYTHON_REQUIRED_USE} | ||
RESTRICT="test" | ||
|
||
RDEPEND=" | ||
libedit? ( dev-libs/libedit:0= ) | ||
lzma? ( app-arch/xz-utils:= ) | ||
ncurses? ( >=sys-libs/ncurses-5.9-r3:0= ) | ||
python? ( | ||
$(python_gen_cond_dep ' | ||
dev-python/six[${PYTHON_USEDEP}] | ||
') | ||
${PYTHON_DEPS} | ||
) | ||
~sys-devel/clang-${PV}[xml] | ||
~sys-devel/llvm-${PV} | ||
!<sys-devel/llvm-4.0" | ||
DEPEND="${RDEPEND}" | ||
BDEPEND=" | ||
>=dev-util/cmake-3.16 | ||
python? ( >=dev-lang/swig-3.0.11 ) | ||
test? ( | ||
$(python_gen_cond_dep " | ||
~dev-python/lit-${PV}[\${PYTHON_USEDEP}] | ||
dev-python/psutil[\${PYTHON_USEDEP}] | ||
") | ||
sys-devel/lld | ||
) | ||
${PYTHON_DEPS}" | ||
|
||
LLVM_COMPONENTS=( lldb ) | ||
LLVM_TEST_COMPONENTS=( llvm/lib/Testing/Support llvm/utils/unittest ) | ||
llvm.org_set_globals | ||
|
||
pkg_setup() { | ||
LLVM_MAX_SLOT=${PV%%.*} llvm_pkg_setup | ||
python-single-r1_pkg_setup | ||
} | ||
|
||
src_configure() { | ||
local mycmakeargs=( | ||
-DLLDB_ENABLE_CURSES=$(usex ncurses) | ||
-DLLDB_ENABLE_LIBEDIT=$(usex libedit) | ||
-DLLDB_ENABLE_PYTHON=$(usex python) | ||
-DLLDB_ENABLE_LZMA=$(usex lzma) | ||
-DLLDB_USE_SYSTEM_SIX=1 | ||
-DLLVM_ENABLE_TERMINFO=$(usex ncurses) | ||
|
||
-DLLDB_INCLUDE_TESTS=$(usex test) | ||
|
||
-DCLANG_LINK_CLANG_DYLIB=ON | ||
# TODO: fix upstream to detect this properly | ||
-DHAVE_LIBDL=ON | ||
-DHAVE_LIBPTHREAD=ON | ||
|
||
# normally we'd have to set LLVM_ENABLE_TERMINFO, HAVE_TERMINFO | ||
# and TERMINFO_LIBS... so just force FindCurses.cmake to use | ||
# ncurses with complete library set (including autodetection | ||
# of -ltinfo) | ||
-DCURSES_NEED_NCURSES=ON | ||
|
||
-DLLDB_EXTERNAL_CLANG_RESOURCE_DIR="${BROOT}/usr/lib/clang/${PV%_*}" | ||
|
||
-DPython3_EXECUTABLE="${PYTHON}" | ||
) | ||
use test && mycmakeargs+=( | ||
-DLLVM_BUILD_TESTS=$(usex test) | ||
-DLLVM_MAIN_SRC_DIR="${WORKDIR}/llvm" | ||
-DLLVM_EXTERNAL_LIT="${EPREFIX}/usr/bin/lit" | ||
-DLLVM_LIT_ARGS="$(get_lit_flags)" | ||
) | ||
|
||
cmake_src_configure | ||
} | ||
|
||
src_test() { | ||
local -x LIT_PRESERVES_TMP=1 | ||
cmake_build check-lldb-lit | ||
# failures + hangs | ||
#use python && cmake_build check-lldb | ||
} | ||
|
||
src_install() { | ||
cmake_src_install | ||
find "${D}" -name '*.a' -delete || die | ||
|
||
use python && python_optimize | ||
} |