configure: update tms470 detection for latest version
authorMans Rullgard <mans@mansr.com>
Sat, 15 Sep 2012 14:36:22 +0000 (15:36 +0100)
committerMans Rullgard <mans@mansr.com>
Thu, 20 Sep 2012 13:56:56 +0000 (14:56 +0100)
v5.0 of the TI ARM compiler changes the version string.
This updates the detection to check for both the old and
the new strings.

Signed-off-by: Mans Rullgard <mans@mansr.com>
configure

index 49e9ecf0403c09e3a9915afaafb4f883a0f63fcc..4461bdeca23358ddae4a7aa574af5a14bd50e780 100755 (executable)
--- a/configure
+++ b/configure
@@ -2275,7 +2275,7 @@ probe_cc(){
         _depflags='-MMD'
         _cflags_speed='-O3'
         _cflags_size='-Os'
-    elif $_cc -version 2>/dev/null | grep -q TMS470; then
+    elif $_cc -version 2>/dev/null | grep -Eq 'TMS470|TI ARM'; then
         _type=tms470
         _ident=$($_cc -version | head -n1 | tr -s ' ')
         _flags='--gcc --abi=eabi -me'