mirror of
https://git.yoctoproject.org/git/poky
synced 2026-01-04 16:10:04 +00:00
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
26 lines
779 B
Plaintext
26 lines
779 B
Plaintext
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} += "${libdir}/* ${libdir}/${PYTHON_DIR}/*"
|
|
|
|
FILES:${PN}-staticdev += "\
|
|
${PYTHON_SITEPACKAGES_DIR}/*.a \
|
|
"
|
|
FILES:${PN}-dev += "\
|
|
${datadir}/pkgconfig \
|
|
${libdir}/pkgconfig \
|
|
${PYTHON_SITEPACKAGES_DIR}/*.la \
|
|
"
|