diff options
author | Romain Naour <romain.naour@gmail.com> | 2017-03-26 18:28:52 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-04-01 15:57:51 +0200 |
commit | d1512c2b7551f5b010efcb60372de068670ea1ce (patch) | |
tree | 88bc87ea4dae2cd8f27ffbbc9e2193bfd78ae2fa | |
parent | 59b89750473be0a41307ee25f66254100a02df92 (diff) | |
download | buildroot-d1512c2b7551f5b010efcb60372de068670ea1ce.tar.gz buildroot-d1512c2b7551f5b010efcb60372de068670ea1ce.zip |
package/mesa3d: explicitely disable asm
assembly are enabled by default on supported plaforms even while
crosscompiling if host == target:
checking whether to enable assembly... yes, x86_64
It was also disabled in the mesa package in Fedora since 7.6 [1].
[1] http://pkgs.fedoraproject.org/cgit/rpms/mesa.git/commit/?id=629c8726
Signed-off-by: Romain Naour <romain.naour@gmail.com>
Cc: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | package/mesa3d/mesa3d.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/package/mesa3d/mesa3d.mk b/package/mesa3d/mesa3d.mk index 6fa1599dbf..0dfa9a5a8c 100644 --- a/package/mesa3d/mesa3d.mk +++ b/package/mesa3d/mesa3d.mk @@ -22,6 +22,9 @@ MESA3D_DEPENDENCIES = \ expat \ libdrm +# Disable assembly usage. +MESA3D_CONF_OPTS = --disable-asm + # The Sourcery MIPS toolchain has a special (non-upstream) feature to # have "compact exception handling", which unfortunately breaks with # mesa3d, so we disable it here by passing -mno-compact-eh. |