diff options
author | Martin Roth <martinroth@google.com> | 2016-03-08 12:07:04 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-03-11 18:25:28 +0100 |
commit | 3e0f74d6b58e3c1e0a06e3a84923e26be36ebe1f (patch) | |
tree | 76a103d3ff103b051846844dcd5658312038f758 /util | |
parent | 342cf7f6a4f63862a7b043b6c56fd3f5f3d7e500 (diff) |
crossgcc/buildgcc: Update for recent arch additions
- Add powerpc64le-linux-gnu & nds32le-elf to the instructions as
supported architectures
- Add nds32le-elf as a supported architecture so it will stop warning
when you build it.
Change-Id: Ifcdbc3d082eae5b9b5f8828914e7d2b7ed1f13a4
Signed-off-by: Martin Roth <martinroth@google.com>
Reviewed-on: https://review.coreboot.org/13961
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'util')
-rwxr-xr-x | util/crossgcc/buildgcc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index eef71e51e5..67ff1b6eb3 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -343,7 +343,8 @@ myhelp() printf " (defaults to $TARGETARCH)\n" printf " [-S|--scripting] build scripting support for GDB\n\n" printf "Platforms for GCC & GDB:\n" - printf " x86_64 i386-elf i386-mingw32 mipsel-elf riscv-elf arm aarch64\n\n" + printf " x86_64 i386-elf i386-mingw32 mipsel-elf riscv-elf arm aarch64\n" + printf " powerpc64le-linux-gnu nds32le-elf\n\n } printversion() { @@ -627,6 +628,7 @@ case "$TARGETARCH" in i386*) TARGETARCH=i386-elf;; arm*) TARGETARCH=arm-eabi;; aarch64*) TARGETARCH=aarch64-elf;; + nds32le-elf) ;; *) printf "${red}WARNING: Unsupported architecture $TARGETARCH.${NC}\n\n"; ;; esac |