Stefan Reinauer (stefan.reinauer@coreboot.org) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/13872
-gerrit
commit 522b87f2d0d3fc8a03488a732b5de73297832783 Author: Stefan Reinauer stefan.reinauer@coreboot.org Date: Tue Mar 1 22:28:20 2016 -0800
buildgcc: Disable RISC-V GDB
Our GDB doesn't support RISC-V yet, so let's disable it for now to keep the build from breaking.
Change-Id: Iecc6d97fb16d16410c56965abeea55c67800f220 Signed-off-by: Stefan Reinauer stefan.reinauer@coreboot.org --- util/crossgcc/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile index aadf316..62adb7f 100644 --- a/util/crossgcc/Makefile +++ b/util/crossgcc/Makefile @@ -57,7 +57,8 @@ build-mips: @$(MAKE) build_tools BUILD_PLATFORM=mipsel-elf
build-riscv: - @$(MAKE) build_tools BUILD_PLATFORM=riscv-elf + # GDB is currently not supported on RISC-V + @$(MAKE) build_gcc BUILD_PLATFORM=riscv-elf
build-power8: @$(MAKE) build_tools BUILD_PLATFORM=powerpc64le-linux-gnu