asm enabled only for x86

This commit is contained in:
Nicolas Chauvet 2017-02-23 13:07:19 +01:00
parent 030d80a70d
commit 540a42f357

View File

@ -125,9 +125,15 @@ autoreconf -vif
%build
#Only enable asm on x86 arches for now
#https://github.com/NVIDIA/libglvnd/issues/116
%configure \
--disable-static \
%ifarch %{ix86} x86_64
--enable-asm \
%else
--disable-asm \
%endif
--enable-tls
%make_build V=1