mirror of
https://git.yoctoproject.org/poky
synced 2026-01-29 21:08:42 +01:00
Simply inheriting setuptools3-base should put everything in $libdir in PN, and there's no need to replicate the pkgconfig packaging rules as those are the defaults. (From OE-Core rev: 56a32e31d4fdfb908f0edf513d21bc0f2b8c721e) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
31 lines
1017 B
Plaintext
31 lines
1017 B
Plaintext
#
|
|
# Copyright OpenEmbedded Contributors
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
|
|
DEPENDS:append:class-target = " ${PYTHON_PN}-native ${PYTHON_PN}"
|
|
DEPENDS:append:class-nativesdk = " ${PYTHON_PN}-native ${PYTHON_PN}"
|
|
RDEPENDS:${PN}:append:class-target = " ${PYTHON_PN}-core"
|
|
|
|
export STAGING_INCDIR
|
|
export STAGING_LIBDIR
|
|
|
|
# LDSHARED is the ld *command* used to create shared library
|
|
export LDSHARED = "${CCLD} -shared"
|
|
# LDXXSHARED is the ld *command* used to create shared library of C++
|
|
# objects
|
|
export LDCXXSHARED = "${CXX} -shared"
|
|
# CCSHARED are the C *flags* used to create objects to go into a shared
|
|
# library (module)
|
|
export CCSHARED = "-fPIC -DPIC"
|
|
# LINKFORSHARED are the flags passed to the $(CC) command that links
|
|
# the python executable
|
|
export LINKFORSHARED = "${SECURITY_CFLAGS} -Xlinker -export-dynamic"
|
|
|
|
FILES:${PN} += "${PYTHON_SITEPACKAGES_DIR}"
|
|
FILES:${PN}-staticdev += "${PYTHON_SITEPACKAGES_DIR}/*.a"
|
|
FILES:${PN}-dev += "${PYTHON_SITEPACKAGES_DIR}/*.la"
|
|
|
|
inherit python3native python3targetconfig
|