mirror of
https://git.yoctoproject.org/meta-ti
synced 2026-04-20 19:53:43 +00:00
* ti-xdctools is a host development package, but the target recipe is needed to create the sourceipk used in SDKs. * And move class extension to common include. Signed-off-by: Jacob Stiffler <j-stiffler@ti.com> Signed-off-by: Denys Dmytriyenko <denys@ti.com>
62 lines
1.3 KiB
PHP
62 lines
1.3 KiB
PHP
DESCRIPTION = "TI XDCtools (RTSC - Real Time Software Components - http://rtsc.eclipse.org)"
|
|
HOMEPAGE = "http://software-dl.ti.com/dsps/dsps_public_sw/sdo_sb/targetcontent/rtsc"
|
|
SECTION = "devel"
|
|
LICENSE = "BSD & GPLv2"
|
|
|
|
require recipes-ti/includes/ti-paths.inc
|
|
require recipes-ti/includes/ti-staging.inc
|
|
|
|
do_install() {
|
|
CP_ARGS="-Prf --preserve=mode,timestamps --no-preserve=ownership"
|
|
|
|
install -d ${D}${XDC_INSTALL_DIR_RECIPE}
|
|
cp ${CP_ARGS} ${S}/* ${D}${XDC_INSTALL_DIR_RECIPE}
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|
|
|
|
INHIBIT_PACKAGE_STRIP = "1"
|
|
INHIBIT_SYSROOT_STRIP = "1"
|
|
INHIBIT_PACKAGE_DEBUG_SPLIT = "1"
|
|
INSANE_SKIP_${PN} = "installed-vs-shipped"
|
|
|
|
# Prevent internal libs from getting picked up
|
|
PRIVATE_LIBS = " \
|
|
libncdb.so \
|
|
libcdb.so \
|
|
libjavaplugin_oji.so \
|
|
libjavaplugin_jni.so \
|
|
libjsound.so \
|
|
libinstrument.so \
|
|
libjawt.so \
|
|
libzip.so \
|
|
libjava_crw_demo.so \
|
|
libjavaplugin_nscp_gcc29.so \
|
|
libhprof.so \
|
|
libcmm.so \
|
|
libjdwp.so \
|
|
libmlib_image.so \
|
|
libjpeg.so \
|
|
libverify.so \
|
|
libjavaplugin_nscp.so \
|
|
libmanagement.so \
|
|
libunpack.so \
|
|
librmi.so \
|
|
libJdbcOdbc.so \
|
|
libawt.so \
|
|
libnet.so \
|
|
libjaas_unix.so \
|
|
libnio.so \
|
|
libdcpr.so \
|
|
libioser12.so \
|
|
libjsoundalsa.so \
|
|
libjava.so \
|
|
libfontmanager.so \
|
|
libdt_socket.so \
|
|
libmawt.so \
|
|
libjvm.so \
|
|
libhpi.so \
|
|
lib.so \
|
|
libcairo.so.2 \
|
|
"
|