Skip to content
Snippets Groups Projects
Commit 8e380710 authored by Loren Merritt's avatar Loren Merritt
Browse files

configure check for whether we can compile ssse3

Originally committed as revision 9002 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 1edbfe19
No related branches found
No related tags found
No related merge requests found
......@@ -646,6 +646,7 @@ HAVE_LIST="
sdl
sdl_video_size
soundcard_h
ssse3
sys_poll_h
sys_soundcard_h
threads
......@@ -1447,6 +1448,13 @@ EOF
int main(){
asm volatile ("":::"%ebx");
}
EOF
# check whether binutils is new enough to compile SSSE3
check_cc <<EOF && enable ssse3
int main(){
asm volatile ("pabsw %xmm0, %xmm0");
}
EOF
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment