diff options
author | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2016-03-01 22:28:20 -0800 |
---|---|---|
committer | Stefan Reinauer <stefan.reinauer@coreboot.org> | 2016-03-02 18:33:37 +0100 |
commit | c77e0419098f3ce241922d60181727ee676c2594 (patch) | |
tree | db67f91014e5e192be3d413a0200e483d73391c8 /util/crossgcc | |
parent | 163506a8f609ec2763b892f27e05983ad27a98fb (diff) | |
download | coreboot-c77e0419098f3ce241922d60181727ee676c2594.tar.gz coreboot-c77e0419098f3ce241922d60181727ee676c2594.tar.bz2 coreboot-c77e0419098f3ce241922d60181727ee676c2594.zip |
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>
Reviewed-on: https://review.coreboot.org/13872
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'util/crossgcc')
-rw-r--r-- | util/crossgcc/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/util/crossgcc/Makefile b/util/crossgcc/Makefile index aadf316f9254..62adb7fcc019 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 |