- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
54 lines
1.3 KiB
BlitzBasic
54 lines
1.3 KiB
BlitzBasic
DESCRIPTION = "GNU debugger for TI C6X DSP."
|
|
SECTION = "devel"
|
|
LICENSE = "GPL-3.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://debian/copyright;md5=bf0fe2872eb3dfeebb2cbe38206fe81f"
|
|
|
|
DEPENDS = "ncurses bison-native texinfo flex-native gettext"
|
|
|
|
COMPATIBLE_MACHINE = "dra7xx"
|
|
|
|
PR = "${INC_PR}.1"
|
|
|
|
SRC_URI:append = " \
|
|
file://init \
|
|
file://0001-libbfd.h-suppress-GCC9-Wstringop-truncation.patch;striplevel=2 \
|
|
"
|
|
|
|
S = "${WORKDIR}/git/gdbc6x"
|
|
|
|
inherit update-rc.d
|
|
inherit gettext
|
|
|
|
CFLAGS += "-fcommon"
|
|
|
|
do_configure () {
|
|
cd ${S}
|
|
./configure --program-suffix=c6x --target=tic6x-elf-tirtos --host=${HOST_SYS} --prefix=${S}/install_gdb
|
|
}
|
|
|
|
do_install () {
|
|
make install
|
|
|
|
# Custom install to prevent conflict with standard GDB.
|
|
install -d ${D}${bindir}
|
|
install -d ${D}${includedir}
|
|
install -m 755 ${S}/install_gdb/bin/gdbc6x ${D}${bindir}
|
|
cp -rf ${S}/install_gdb/include/* ${D}${includedir}
|
|
|
|
install -d ${D}${sysconfdir}/init.d
|
|
install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/gdbserverproxy
|
|
}
|
|
|
|
RDEPENDS:${PN} = "gdbserverproxy-module-drv bash"
|
|
|
|
include gdbc6x.inc
|
|
|
|
INITSCRIPT_NAME = "gdbserverproxy"
|
|
INITSCRIPT_PARAMS = "defaults 95"
|
|
|
|
PARALLEL_MAKE = ""
|
|
|
|
# Disable the "buildpaths" check while we figure out how we are
|
|
# going to address this issue.
|
|
INSANE_SKIP:${PN} += "buildpaths"
|