Merge commit '6a7e928555d081ff86c867867ebce74fdc4c87d6'

* commit '6a7e928555d081ff86c867867ebce74fdc4c87d6':
  configure: Do not check for the __builtin_vec_vsx_ld

Merged-by: James Almer <jamrial@gmail.com>
This commit is contained in:
James Almer 2017-10-31 13:11:02 -03:00
commit 092951f4a8

9
configure vendored
View File

@ -5605,7 +5605,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