diff options
| author | Jacob Stiffler <j-stiffler@ti.com> | 2015-05-20 19:40:30 +0000 |
|---|---|---|
| committer | Denys Dmytriyenko <denys@ti.com> | 2015-06-01 10:30:29 -0400 |
| commit | b4181e7346f9e4732f801740c22d9f4109254656 (patch) | |
| tree | b56c6f632835ff14824b4b253af748bb9e0566a8 /recipes-devtools | |
| parent | 5c880613a30351e8dfa815ed82740aa5012ef0d4 (diff) | |
| download | meta-ti-b4181e7346f9e4732f801740c22d9f4109254656.tar.gz | |
gdbserver-c6x: Add version 1.1.0
* c6x DSP development files required to support remote gdb debugging.
Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'recipes-devtools')
| -rw-r--r-- | recipes-devtools/gdbc6x/gdbserver-c6x_git.bb | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/recipes-devtools/gdbc6x/gdbserver-c6x_git.bb b/recipes-devtools/gdbc6x/gdbserver-c6x_git.bb new file mode 100644 index 00000000..f4dc51dc --- /dev/null +++ b/recipes-devtools/gdbc6x/gdbserver-c6x_git.bb | |||
| @@ -0,0 +1,50 @@ | |||
| 1 | DESCRIPTION = "TI gdb-server to be used with c6xgdb." | ||
| 2 | LICENSE = "BSD" | ||
| 3 | LIC_FILES_CHKSUM = "file://../debian/copyright;md5=82c616b6c8f9c11c46feaaf8f9a11495" | ||
| 4 | |||
| 5 | DEPENDS = "ti-xdais ti-framework-components ti-cgt6x-native ti-sysbios ti-xdctools" | ||
| 6 | |||
| 7 | PR = "${INC_PR}.0" | ||
| 8 | |||
| 9 | S = "${WORKDIR}/git/gdbserver-c6x/src" | ||
| 10 | |||
| 11 | PLATFORM = "" | ||
| 12 | PLATFORM_dra7xx = "DRA7xx_PLATFORM" | ||
| 13 | PLATFORM_keystone = "KEYSTONE_PLATFORM" | ||
| 14 | |||
| 15 | EXTRA_OEMAKE = "PLATFORM=${PLATFORM}" | ||
| 16 | |||
| 17 | export XDAIS_DIR = "${XDAIS_INSTALL_DIR}" | ||
| 18 | export FC_DIR = "${FC_INSTALL_DIR}" | ||
| 19 | export TI_CGT_INSTALL = "${STAGING_DIR_NATIVE}/usr/share/ti/cgt-c6x" | ||
| 20 | export BIOS_DIR = "${SYSBIOS_INSTALL_DIR}" | ||
| 21 | export XDC_DIR = "${XDC_INSTALL_DIR}" | ||
| 22 | |||
| 23 | # The following is to prevent an unused configure.ac from erroneously | ||
| 24 | # triggering the QA check for gettext. | ||
| 25 | EXTRA_OECONF = "--disable-nls" | ||
| 26 | do_configure() { | ||
| 27 | : | ||
| 28 | } | ||
| 29 | |||
| 30 | do_install() { | ||
| 31 | install -d ${D}${datadir}/ti/gdbc6x/include | ||
| 32 | install -d ${D}${datadir}/ti/gdbc6x/lib | ||
| 33 | cp -f ../include/* ${D}${datadir}/ti/gdbc6x/include | ||
| 34 | cp -f ../lib/* ${D}${datadir}/ti/gdbc6x/lib | ||
| 35 | } | ||
| 36 | |||
| 37 | COMPATIBLE_MACHINE = "dra7xx|keystone" | ||
| 38 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||
| 39 | |||
| 40 | FILES_${PN}-dev += "\ | ||
| 41 | ${datadir}/ti/gdbc6x \ | ||
| 42 | " | ||
| 43 | |||
| 44 | include gdbc6x.inc | ||
| 45 | |||
| 46 | require recipes-ti/includes/ti-paths.inc | ||
| 47 | |||
| 48 | ALLOW_EMPTY_${PN} = "1" | ||
| 49 | |||
| 50 | PARALLEL_MAKE = "" | ||
