mirror of
https://git.yoctoproject.org/poky
synced 2026-03-01 12:59:39 +01:00
This commit fixes Bug #528. 1. Added the target arch name to the pkg name of gcc-cross-canadian, gdb-cross-candian and bintuils-cross-candian. 2. Move the cross-canadian pkgs out of task-sdk-host into a new task task-cross-canadian. 3. Added the RDEPENDS of task-cross-canadian into meta-toolchain. Signed-off-by: Lianhao Lu <lianhao.lu@intel.com>
30 lines
536 B
BlitzBasic
30 lines
536 B
BlitzBasic
#
|
|
# Copyright (C) 2007 OpenedHand Ltd
|
|
#
|
|
|
|
DESCRIPTION = "Host packages for the standalone SDK or external toolchain"
|
|
PR = "r9"
|
|
LICENSE = "MIT"
|
|
ALLOW_EMPTY = "1"
|
|
|
|
inherit nativesdk
|
|
|
|
PACKAGES = "${PN}"
|
|
|
|
RDEPENDS_${PN} = "\
|
|
pkgconfig-nativesdk \
|
|
qemu-nativesdk \
|
|
qemu-helper-nativesdk \
|
|
pseudo-nativesdk \
|
|
unfs-server-nativesdk \
|
|
opkg-nativesdk \
|
|
"
|
|
|
|
RDEPENDS_${PN}_darwin8 = "\
|
|
odcctools-cross-canadian \
|
|
llvm-cross-canadian \
|
|
pkgconfig-nativesdk \
|
|
opkg-nativesdk \
|
|
libtool-nativesdk \
|
|
"
|