summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xconfigure6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure b/configure
index a47b59d..787bd90 100755
--- a/configure
+++ b/configure
@@ -115,8 +115,12 @@ case "$target" in
exit 2;;
esac
case "$target" in
- *-eabi) abi="eabi";;
+ *-eabi|*-linux) abi="eabi";;
*-eabihf|*-hf|*-hardfloat) abi="hardfloat";;
+ *)
+ echo "Unknown target '$target'." 1>&2
+ echo "$usage" 1>&2
+ exit 2;;
esac
system="linux"
cc="${toolprefix}gcc"