diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2014-03-21 17:51:16 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2014-03-21 17:51:16 +0100 |
commit | db55365d0f938ee93ed660a14c07f10f2a66dd10 (patch) | |
tree | c8bfaf894c644105448c8ebb064a4e239aa2d770 | |
parent | 9dca02ee541120de2a96c387faed9a4e033a60fd (diff) | |
download | ffmpeg-db55365d0f938ee93ed660a14c07f10f2a66dd10.tar.gz |
configure: Try to fix detection of ARM Compiler 5.04
Fixes Ticket 3364
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3187,7 +3187,7 @@ probe_cc(){ _cflags_speed='-fast' _cflags_size='-O1' _flags_filter=ccc_flags - elif $_cc --vsn 2>/dev/null | grep -q "ARM C/C++ Compiler"; then + elif $_cc --vsn 2>/dev/null | grep -Eq "ARM C/C[+][+] Compiler|Component: ARM Compiler "; then test -d "$sysroot" || die "No valid sysroot specified." _type=armcc _ident=$($_cc --vsn | head -n1) |