summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbrodkorb@conet.de>2018-06-01 07:25:59 +0200
committerWaldemar Brodkorb <wbrodkorb@conet.de>2018-06-01 07:26:13 +0200
commitbc42e9e27d37fd9d8998a1a440f390e517ae90ed (patch)
tree47ae93832456cd29758f09d177d323be0d1f981c
parent491e1c07944ef06eedb57b01f477fc780a57aa2c (diff)
riscv: use github fork until upstream
-rw-r--r--package/gdb-riscv/Makefile44
-rw-r--r--package/gdb/Makefile2
-rw-r--r--target/config/Config.in.gdb10
-rw-r--r--toolchain/gdb/Makefile.inc7
4 files changed, 62 insertions, 1 deletions
diff --git a/package/gdb-riscv/Makefile b/package/gdb-riscv/Makefile
new file mode 100644
index 000000000..e73baf80b
--- /dev/null
+++ b/package/gdb-riscv/Makefile
@@ -0,0 +1,44 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include ${ADK_TOPDIR}/rules.mk
+
+PKG_NAME:= gdb
+PKG_VERSION:= riscv-gdb-8.1
+PKG_GIT:= branch
+PKG_RELEASE:= 1
+PKG_DESCR:= programm debugger
+PKG_SECTION:= app/debug
+PKG_HASH:= 605954d5747d5f08ea4b7f48e958d1ebbf39265e18f7f36738deeabb83744485
+PKG_DEPENDS:= libncurses zlib libexpat libthread-db
+PKG_BUILDDEP:= ncurses readline expat zlib
+PKG_SITES:= https://github.com/riscv/riscv-binutils-gdb.git
+
+PKG_ARCH_DEPENDS:= riscv32 riscv64
+
+include ${ADK_TOPDIR}/mk/package.mk
+
+$(eval $(call PKG_template,GDB,gdb,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIGURE_ARGS+= --enable-static \
+ --without-uiout \
+ --disable-tui \
+ --disable-gdbtk \
+ --disable-gdbserver \
+ --without-x \
+ --disable-sim \
+ --disable-werror \
+ --without-python \
+ --without-included-gettext \
+ --without-auto-load-safe-path \
+ --disable-install-libiberty \
+ --disable-install-libbfd \
+ --with-curses \
+ --enable-gdbmi
+
+gdb-install:
+ ${INSTALL_DIR} ${IDIR_GDB}/usr/bin
+ ${INSTALL_BIN} ${WRKINST}/usr/bin/gdb \
+ ${IDIR_GDB}/usr/bin/
+
+include ${ADK_TOPDIR}/mk/pkg-bottom.mk
diff --git a/package/gdb/Makefile b/package/gdb/Makefile
index 1a121c7e7..c739e2472 100644
--- a/package/gdb/Makefile
+++ b/package/gdb/Makefile
@@ -14,7 +14,7 @@ PKG_DEPENDS:= libncurses zlib libexpat libthread-db
PKG_BUILDDEP:= ncurses readline expat zlib
PKG_NEEDS:= c++
-PKG_ARCH_DEPENDS:= !cris !avr32 !nios2 !microblaze !or1k
+PKG_ARCH_DEPENDS:= !cris !avr32 !nios2 !microblaze !or1k !riscv32 !riscv64
include ${ADK_TOPDIR}/mk/package.mk
diff --git a/target/config/Config.in.gdb b/target/config/Config.in.gdb
index bdc7c462e..00e12c62a 100644
--- a/target/config/Config.in.gdb
+++ b/target/config/Config.in.gdb
@@ -21,6 +21,8 @@ choice
prompt "GNU debugger version"
depends on ADK_TOOLCHAIN_WITH_GDB
default ADK_TOOLCHAIN_GDB_H8300_GIT if ADK_TARGET_ARCH_H8300
+default ADK_TOOLCHAIN_GDB_RISCV_GIT if ADK_TARGET_ARCH_RISCV32
+default ADK_TOOLCHAIN_GDB_RISCV_GIT if ADK_TARGET_ARCH_RISCV64
default ADK_TOOLCHAIN_GDB_8_1
config ADK_TOOLCHAIN_GDB_GIT
@@ -28,16 +30,24 @@ config ADK_TOOLCHAIN_GDB_GIT
depends on !ADK_TARGET_ARCH_AVR32
depends on !ADK_TARGET_ARCH_H8300
depends on !ADK_TARGET_ARCH_NDS32
+ depends on !ADK_TARGET_ARCH_RISCV32
+ depends on !ADK_TARGET_ARCH_RISCV64
config ADK_TOOLCHAIN_GDB_H8300_GIT
bool "h8300-git"
depends on ADK_TARGET_ARCH_H8300
+config ADK_TOOLCHAIN_GDB_RISCV_GIT
+ bool "riscv-git"
+ depends on ADK_TARGET_ARCH_RISCV32 || ADK_TARGET_ARCH_RISCV64
+
config ADK_TOOLCHAIN_GDB_8_1
bool "8.1"
depends on !ADK_TARGET_ARCH_AVR32
depends on !ADK_TARGET_ARCH_H8300
depends on !ADK_TARGET_ARCH_NDS32
+ depends on !ADK_TARGET_ARCH_RISCV32
+ depends on !ADK_TARGET_ARCH_RISCV64
config ADK_TOOLCHAIN_GDB_6_7_1
bool "6.7.1"
diff --git a/toolchain/gdb/Makefile.inc b/toolchain/gdb/Makefile.inc
index 7fc31eea2..ca3a57f3e 100644
--- a/toolchain/gdb/Makefile.inc
+++ b/toolchain/gdb/Makefile.inc
@@ -24,6 +24,13 @@ PKG_GIT:= branch
PKG_SITES:= git://git.pf.osdn.jp/gitroot/y/ys/ysato/binutils_gdb.git
DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.xz
endif
+ifeq ($(ADK_TOOLCHAIN_GDB_RISCV_GIT),y)
+PKG_VERSION:= riscv-gdb-8.1
+PKG_RELEASE:= 1
+PKG_GIT:= branch
+PKG_SITES:= https://github.com/riscv/riscv-binutils-gdb.git
+DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.xz
+endif
ifeq ($(ADK_TOOLCHAIN_GDB_GIT),y)
PKG_VERSION:= git
PKG_RELEASE:= 1