diff options
Diffstat (limited to 'meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb')
-rw-r--r-- | meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb b/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb index d3ada9c6..b803ac5b 100644 --- a/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb +++ b/meta-ti-extras/recipes-devtools/gdbc6x/gdbc6x_git.bb | |||
@@ -1,4 +1,4 @@ | |||
1 | DESCRIPTION = "GNU debugger for TI C6X DSP." | 1 | SUMMARY = "GNU debugger for TI C6X DSP." |
2 | SECTION = "devel" | 2 | SECTION = "devel" |
3 | LICENSE = "GPL-3.0-or-later" | 3 | LICENSE = "GPL-3.0-or-later" |
4 | LIC_FILES_CHKSUM = "file://debian/copyright;md5=bf0fe2872eb3dfeebb2cbe38206fe81f" | 4 | LIC_FILES_CHKSUM = "file://debian/copyright;md5=bf0fe2872eb3dfeebb2cbe38206fe81f" |
@@ -14,12 +14,12 @@ SRC_URI:append = " \ | |||
14 | file://0001-libbfd.h-suppress-GCC9-Wstringop-truncation.patch;striplevel=2 \ | 14 | file://0001-libbfd.h-suppress-GCC9-Wstringop-truncation.patch;striplevel=2 \ |
15 | " | 15 | " |
16 | 16 | ||
17 | S = "${WORKDIR}/git/gdbc6x" | 17 | S:append = "/gdbc6x" |
18 | 18 | ||
19 | inherit update-rc.d | 19 | inherit update-rc.d |
20 | inherit gettext | 20 | inherit gettext |
21 | 21 | ||
22 | CFLAGS += "-fcommon" | 22 | CFLAGS += "-fcommon -fpermissive -std=gnu11" |
23 | 23 | ||
24 | do_configure () { | 24 | do_configure () { |
25 | cd ${S} | 25 | cd ${S} |
@@ -36,7 +36,7 @@ do_install () { | |||
36 | cp -rf ${S}/install_gdb/include/* ${D}${includedir} | 36 | cp -rf ${S}/install_gdb/include/* ${D}${includedir} |
37 | 37 | ||
38 | install -d ${D}${sysconfdir}/init.d | 38 | install -d ${D}${sysconfdir}/init.d |
39 | install -m 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/gdbserverproxy | 39 | install -m 0755 ${UNPACKDIR}/init ${D}${sysconfdir}/init.d/gdbserverproxy |
40 | } | 40 | } |
41 | 41 | ||
42 | RDEPENDS:${PN} = "gdbserverproxy-module-drv bash" | 42 | RDEPENDS:${PN} = "gdbserverproxy-module-drv bash" |
@@ -47,3 +47,7 @@ INITSCRIPT_NAME = "gdbserverproxy" | |||
47 | INITSCRIPT_PARAMS = "defaults 95" | 47 | INITSCRIPT_PARAMS = "defaults 95" |
48 | 48 | ||
49 | PARALLEL_MAKE = "" | 49 | PARALLEL_MAKE = "" |
50 | |||
51 | # Disable the "buildpaths" check while we figure out how we are | ||
52 | # going to address this issue. | ||
53 | INSANE_SKIP:${PN} += "buildpaths" | ||