Commit 8e380710 authored by Loren Merritt's avatar Loren Merritt

configure check for whether we can compile ssse3

Originally committed as revision 9002 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 1edbfe19
...@@ -646,6 +646,7 @@ HAVE_LIST=" ...@@ -646,6 +646,7 @@ HAVE_LIST="
sdl sdl
sdl_video_size sdl_video_size
soundcard_h soundcard_h
ssse3
sys_poll_h sys_poll_h
sys_soundcard_h sys_soundcard_h
threads threads
...@@ -1447,6 +1448,13 @@ EOF ...@@ -1447,6 +1448,13 @@ EOF
int main(){ int main(){
asm volatile ("":::"%ebx"); 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 EOF
fi fi
......
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