Commit 6a7e9285 authored by Luca Barbato's avatar Luca Barbato

configure: Do not check for the __builtin_vec_vsx_ld

Clang support for Altivec/VSX uses a different approach.
parent 3d040513
......@@ -4447,7 +4447,14 @@ EOF
if enabled vsx; then
check_cflags -mvsx &&
check_builtin vec_vsx_ld "altivec.h" "__builtin_vec_vsx_ld" || disable vsx
check_cc <<EOF || disable vsx
$inc_altivec_h
int main(void) {
int v[4] = { 0 };
vector signed int v1 = vec_vsx_ld(0, v);
return 0;
}
EOF
fi
if enabled power8; then
......
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