OSDN Git Service

configure.ac: enable_asm=yes when x-compiling across same X86 arch
authorDongwon Kim <dongwon.kim@intel.com>
Tue, 16 Feb 2016 18:05:24 +0000 (10:05 -0800)
committerMatt Turner <mattst88@gmail.com>
Thu, 17 Mar 2016 23:53:23 +0000 (16:53 -0700)
commit49eb5e75bdc54d230c87669dacf24efb8217e756
treee07f0e314ff20216a21a7a066090e81d9bfa7169
parentd6b9202873f015174592e32f3325d00c57153d2d
configure.ac: enable_asm=yes when x-compiling across same X86 arch

Currently, configure script is forcing 'enable_asm' to be 'no'
whenever cross-compilation is performed on X86 host. This is
based on an assumption that target architecture is different
from host's (i.e. ARM). But there's always a case that we do
cross-compilation for target that is also X86 based just like
host in which same ASM codes will be supported. 'enable_asm'
should not be forced to be "no" anymore in this case.

v2: corrected commit message

Reviewed-by: Matt Turner <mattst88@gmail.com>
Signed-off-by: Dongwon Kim <dongwon.kim@intel.com>
configure.ac