[FFmpeg-cvslog] configure: Add probe identification of MS armasm

Martin Storsjö git at videolan.org
Sun Aug 10 18:59:47 CEST 2014


ffmpeg | branch: master | Martin Storsjö <martin at martin.st> | Sat Aug  9 22:25:44 2014 +0300| [f4312352fc52cc47c1ba398a33f629d32a737e91] | committer: Martin Storsjö

configure: Add probe identification of MS armasm

Signed-off-by: Martin Storsjö <martin at martin.st>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=f4312352fc52cc47c1ba398a33f629d32a737e91
---

 configure |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/configure b/configure
index c128b29..b9626e7 100755
--- a/configure
+++ b/configure
@@ -2883,6 +2883,11 @@ probe_cc(){
         _cflags_size="-O2 -Munroll=c:1 $opt_common"
         _cflags_noopt="-O1"
         _flags_filter=pgi_flags
+    elif $_cc 2>&1 | grep -q 'Microsoft.*ARM.*Assembler'; then
+        _type=armasm
+        _ident=$($_cc | head -n1)
+        # 4509: "This form of conditional instruction is deprecated"
+        _flags="-nologo -ignore 4509"
     elif $_cc 2>&1 | grep -q Microsoft; then
         _type=msvc
         _ident=$($cc 2>&1 | head -n1)



More information about the ffmpeg-cvslog mailing list