diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2015-03-08 09:20:36 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-03-08 12:32:12 +0100 |
commit | 9b7efa55b3c2a0e299095eb643447a7ed43083df (patch) | |
tree | c9bf7b1f631f0f1ce9ffa9bee900c340de12205e | |
parent | b6fa61a1216cc48a199335d9414698401d20dbf2 (diff) |
crossgcc: Add mipsel-elf as supported target
Change-Id: Icd8050d9193f9957468cfa13901ec14e993e50de
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/8630
Tested-by: build bot (Jenkins)
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
-rwxr-xr-x | util/crossgcc/buildgcc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/util/crossgcc/buildgcc b/util/crossgcc/buildgcc index 0779266a79..fc85734e01 100755 --- a/util/crossgcc/buildgcc +++ b/util/crossgcc/buildgcc @@ -229,6 +229,7 @@ done case "$TARGETARCH" in i386-elf) ;; i386-mingw32) ;; + mipsel-elf) ;; i386*) TARGETARCH=i386-elf;; arm*) TARGETARCH=armv7-a-eabi;; aarch64*) TARGETARCH=aarch64-elf;; |