Commit fee6b651 authored by mru's avatar mru

fix extern prefix detection on mingw


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@12485 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent d4ec218a
...@@ -1494,7 +1494,7 @@ fi ...@@ -1494,7 +1494,7 @@ fi
check_cc <<EOF || die "Symbol mangling check failed." check_cc <<EOF || die "Symbol mangling check failed."
int ff_extern; int ff_extern;
EOF EOF
sym=$(nm -P $TMPO) sym=$(nm -P -g $TMPO)
extern_prefix=${sym%%ff_extern*} extern_prefix=${sym%%ff_extern*}
check_asm inline_asm '""' 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