diff options
author | Diego Biurrun <diego@biurrun.de> | 2014-08-06 05:55:33 -0700 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2014-08-08 05:30:32 -0700 |
commit | 444c73583d2848a542330c03949e1f933ac68f53 (patch) | |
tree | ce71a6351bf8cbe04fcd9c6c308dd077a22834c9 /configure | |
parent | 0026e356d044e72b6e743b234708b8b8af457ac0 (diff) | |
download | ffmpeg-444c73583d2848a542330c03949e1f933ac68f53.tar.gz |
configure: Only run gas checks on ARM and PowerPC
Standalone GNU assembly is not used on x86.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3777,7 +3777,7 @@ EOF return 0 } -if enabled asm; then +if enabled_any arm aarch64 || enabled_all ppc altivec && enabled asm; then enabled_any arm aarch64 && nogas=die enabled_all ppc altivec && nogas=warn |