mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-17 00:08:08 +00:00
* now when insane_qa is moved to separate task, we cannot set INSANE_SKIP in do_package task Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
69 lines
2.8 KiB
PHP
69 lines
2.8 KiB
PHP
# LLVM does not provide ABI stability between different versions. For this
|
|
# reason OE makes it possible to build and install different llvm versions
|
|
# at the same time.
|
|
#
|
|
# This is true for the normal recipes as well as the native ones.
|
|
#
|
|
# All regular installation directories are prefixed with 'llvm${LLVM_RELEASE}'
|
|
# e.g. "${STAGING_BINDIR}/llvm2.5" or "${STAGING_INCDIR}/llvm2.5"
|
|
#
|
|
# For your program or library that makes use of llvm you do should not need to
|
|
# modify anything as long as it uses the results of various llvm-config
|
|
# invocations. If you need customizations something is wrong and it needs to be
|
|
# fixed (report bug).
|
|
#
|
|
# However the *recipe* for your program/library *must* declare
|
|
# export WANT_LLVM_RELEASE = "<valid version number>"
|
|
# The version number is picked up by a generic wrapper script which just calls
|
|
# the variant of the specified version.
|
|
|
|
DESCRIPTION = "The Low Level Virtual Machine"
|
|
HOMEPAGE = "http://llvm.org"
|
|
|
|
# 3-clause BSD-like
|
|
# University of Illinois/NCSA Open Source License
|
|
LICENSE = "NCSA"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.TXT;md5=d0a3ef0d3e0e8f5cf59e5ffc273ab1f8"
|
|
|
|
# 2.* inherits also cmake
|
|
# 3.* inherits also automake
|
|
inherit perlnative pythonnative
|
|
|
|
LLVM_RELEASE = "${PV}"
|
|
LLVM_DIR = "llvm${LLVM_RELEASE}"
|
|
|
|
ALLOW_EMPTY_${PN} = "1"
|
|
ALLOW_EMPTY_${PN}-staticdev = "1"
|
|
FILES_${PN} = ""
|
|
FILES_${PN}-staticdev = ""
|
|
DOTDEBUG-dbg = " ${bindir}/${LLVM_DIR}/.debug \
|
|
${libdir}/${LLVM_DIR}/.debug/BugpointPasses.so \
|
|
${libdir}/${LLVM_DIR}/.debug/LLVMHello.so \
|
|
/usr/src/debug \
|
|
"
|
|
|
|
FILES_${PN}-dev = "${bindir}/${LLVM_DIR} \
|
|
${includedir}/${LLVM_DIR} \
|
|
${libdir}/${LLVM_DIR}/BugpointPasses.so \
|
|
${libdir}/${LLVM_DIR}/LLVMHello.so \
|
|
"
|
|
|
|
PACKAGES_DYNAMIC = "^libllvm-.*$"
|
|
|
|
INSANE_SKIP_libllvm${LLVM_RELEASE}-llvm-${LLVM_RELEASE} += "dev-so"
|
|
|
|
python llvm_populate_packages() {
|
|
libdir = bb.data.expand('${libdir}', d)
|
|
libllvm_libdir = bb.data.expand('${libdir}/${LLVM_DIR}', d)
|
|
split_dbg_packages = do_split_packages(d, libllvm_libdir+'/.debug', '^lib(.*)\.so$', 'libllvm${LLVM_RELEASE}-%s-dbg', 'Split debug package for %s', allow_dirs=True)
|
|
split_packages = do_split_packages(d, libdir, '^lib(.*)\.so$', 'libllvm${LLVM_RELEASE}-%s', 'Split package for %s', allow_dirs=True, allow_links=True, recursive=True)
|
|
split_staticdev_packages = do_split_packages(d, libllvm_libdir, '^lib(.*)\.a$', 'libllvm${LLVM_RELEASE}-%s-staticdev', 'Split staticdev package for %s', allow_dirs=True)
|
|
if split_packages:
|
|
pn = d.getVar('PN', True)
|
|
d.appendVar('RDEPENDS_' + pn, ' '+' '.join(split_packages))
|
|
d.appendVar('RDEPENDS_' + pn + '-dbg', ' '+' '.join(split_dbg_packages))
|
|
d.appendVar('RDEPENDS_' + pn + '-staticdev', ' '+' '.join(split_staticdev_packages))
|
|
}
|
|
|
|
PACKAGESPLITFUNCS_prepend = "llvm_populate_packages "
|