Commit 4801c420 authored by diego's avatar diego

When compiling with -fmudflap configure fill EXTERN_PREFIX with garbage

(some mudflap symbol), so just pick out ff_extern symbols in this case.
patch by matthieu castet, castet.matthieu free fr


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@13072 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent fa86d655
......@@ -1474,7 +1474,7 @@ fi
check_cc <<EOF || die "Symbol mangling check failed."
int ff_extern;
EOF
sym=$($nm -P -g $TMPO)
sym=$($nm -P -g $TMPO | grep ff_extern)
extern_prefix=${sym%%ff_extern*}
check_asm inline_asm '""'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment