[coreboot-gerrit] Patch set updated for coreboot: crosgcc/buildgcc: Update for recent arch additions

Martin Roth (martinroth@google.com) gerrit at coreboot.org
Thu Mar 10 04:20:55 CET 2016


Martin Roth (martinroth at google.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/13961

-gerrit

commit 10ac7a593ce096fcb205a511bebdc25c9f718d08
Author: Martin Roth <martinroth at google.com>
Date:   Tue Mar 8 12:07:04 2016 -0700

    crosgcc/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 at google.com>
---
 util/crossgcc/buildgcc | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc
index df9ac4a..9266597 100755
--- a/util/crossgcc/buildgcc
+++ b/util/crossgcc/buildgcc
@@ -340,7 +340,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() {
@@ -624,6 +625,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
 



More information about the coreboot-gerrit mailing list