diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2010-11-09 20:12:35 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-11-09 20:12:35 +0000 |
commit | f3fc8ee4a48ca027ec8b61519cb56e1feb178767 (patch) | |
tree | f3b63cf557827c86634a29f9c942bf66bc2d2b6e | |
parent | 8e46cc4cb1bbcdba5298eb43d96561da4e9bb1b2 (diff) | |
download | openbios-f3fc8ee4a48ca027ec8b61519cb56e1feb178767.zip openbios-f3fc8ee4a48ca027ec8b61519cb56e1feb178767.tar.gz openbios-f3fc8ee4a48ca027ec8b61519cb56e1feb178767.tar.bz2 |
Add support to -linux-gcc style cross compilers
Check for -linux-gcc cross compilers in addition to -linux-gnu-gcc.
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@950 f158a5a8-5612-0410-a976-696ce0be7e32
-rwxr-xr-x | config/scripts/switch-arch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/scripts/switch-arch b/config/scripts/switch-arch index 82376bc..087ec79 100755 --- a/config/scripts/switch-arch +++ b/config/scripts/switch-arch @@ -97,7 +97,7 @@ archname() select_prefix() { - for TARGET in ${1}-linux-gnu- ${1}-elf- ${1}-eabi- + for TARGET in ${1}-linux-gnu- ${1}-linux- ${1}-elf- ${1}-eabi- do if type ${TARGET}gcc > /dev/null 2>&1 then |