diff options
author | Valentin Korenblit <valentinkorenblit@gmail.com> | 2018-10-20 16:34:48 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@bootlin.com> | 2018-10-20 17:29:13 +0200 |
commit | 826b57a17064c18a7fe2b805ea689f171603e7f0 (patch) | |
tree | a525a98933b566ca36be2e65d6062914c28730d9 | |
parent | aa2eb4bd645f636b313f0fbac9f4775263685d18 (diff) | |
download | buildroot-826b57a17064c18a7fe2b805ea689f171603e7f0.tar.gz buildroot-826b57a17064c18a7fe2b805ea689f171603e7f0.zip |
package/mesa3d: disable opencl
Preliminary patch to prevent Mesa from building OpenCL lib as
soon as libclc is available.
Signed-off-by: Valentin Korenblit <valentin.korenblit@smile.fr>
Signed-off-by: Valentin Korenblit <valentinkorenblit@gmail.com>
Acked-by: Romain Naour <romain.naour@smile.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.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 82a66b6d9b..0d67dcbf1c 100644 --- a/package/mesa3d/mesa3d.mk +++ b/package/mesa3d/mesa3d.mk @@ -43,6 +43,9 @@ else MESA3D_CONF_OPTS += --disable-llvm endif +# Disable opencl in case libclc is detected +MESA3D_CONF_OPTS += --disable-opencl + ifeq ($(BR2_PACKAGE_MESA3D_NEEDS_ELFUTILS),y) MESA3D_DEPENDENCIES += elfutils endif |