mirror of
https://git.yoctoproject.org/poky
synced 2026-06-02 01:19:52 +00:00
cross-linkage: Add dummy package to handle linking cross to staging
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@2761 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
@@ -0,0 +1,28 @@
|
|||||||
|
DESCRIPTION = "cross-linkage sets up symlinks between cross and staging so the compiler can find things"
|
||||||
|
SECTION = "devel"
|
||||||
|
PACKAGES = ""
|
||||||
|
|
||||||
|
INHIBIT_DEFAULT_DEPS = "1"
|
||||||
|
PR = "r0"
|
||||||
|
|
||||||
|
SRC_URI = ""
|
||||||
|
|
||||||
|
do_configure() {
|
||||||
|
:
|
||||||
|
}
|
||||||
|
|
||||||
|
do_compile () {
|
||||||
|
:
|
||||||
|
}
|
||||||
|
|
||||||
|
do_install() {
|
||||||
|
:
|
||||||
|
}
|
||||||
|
|
||||||
|
do_stage () {
|
||||||
|
install -d ${CROSS_DIR}/${TARGET_SYS}/
|
||||||
|
rm -rf ${CROSS_DIR}/${TARGET_SYS}/include
|
||||||
|
ln -s ${STAGING_INCDIR}/ ${CROSS_DIR}/${TARGET_SYS}/include
|
||||||
|
rm -rf ${CROSS_DIR}/${TARGET_SYS}/lib
|
||||||
|
ln -s ${STAGING_LIBDIR} ${CROSS_DIR}/${TARGET_SYS}/lib
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user