Commit 60a070a3 authored by lorenm's avatar lorenm

configure check for whether we can compile ssse3


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@9002 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 341ac935
......@@ -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
......
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