From d7e98ea6acd0e01b26ec1084eb00b9cb06e59111 Mon Sep 17 00:00:00 2001 From: Reinhard Tartler Date: Tue, 15 Jun 2010 19:44:30 +0000 Subject: configure: fix symver detection with icc 10 Apparently the compiler sometimes bypasses the normal assembler, in which case the asm label variant works. If the file contains any inline asm, this bypassing is not done, and the assembler chokes on invalid syntax. Inserting a dummy asm() statement in the test when the compiler supports it makes sure no shortcuts are taken and the test fails as it should. backport r23616 by mru Originally committed as revision 23618 to svn://svn.ffmpeg.org/ffmpeg/branches/0.6 --- configure | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/configure b/configure index ac09f808bd..0166829f77 100755 --- a/configure +++ b/configure @@ -253,6 +253,8 @@ EOF exit 0 } +quotes='""' + log(){ echo "$@" >> $logfile } @@ -2741,7 +2743,7 @@ if test_ldflags -Wl,--version-script,$TMPV; then append SHFLAGS '-Wl,--version-script,\$(SUBDIR)lib\$(NAME).ver' check_cc <