mirror of https://git.ffmpeg.org/ffmpeg.git
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:
commit
092951f4a8
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue