diff options
author | Luca Barbato <lu_zero at gentoo.org> | 2015-09-25 08:56:25 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2015-09-29 11:10:37 +0200 |
commit | 678f788fea3380e5cbbf75baac5cc0ce07a56a42 (patch) | |
tree | 5bcbd0a7fe060b5b9fbc1ae51b3c84c3b0ffc5aa /configure | |
parent | 1a4c5fe56008c61b0362c75bea5d446dc5b256bc (diff) | |
download | ffmpeg-678f788fea3380e5cbbf75baac5cc0ce07a56a42.tar.gz |
configure: Set the initial ldflags to match the cflags
Some gcc-based toolchain would fail to link if the abi set by the
cpuflags does not match the default.
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -3461,6 +3461,7 @@ fi if [ "$cpu" != generic ]; then add_cflags $cpuflags add_asflags $cpuflags + test "$cc_type" = "$ld_type" && add_ldflags $cpuflags fi # compiler sanity check |