Module: Mesa
Branch: master
Commit: 6ef9482b78d5c486f4d40785b7f04c3dabf81ff9
URL:    
http://cgit.freedesktop.org/mesa/mesa/commit/?id=6ef9482b78d5c486f4d40785b7f04c3dabf81ff9

Author: Emil Velikov <emil.veli...@collabora.com>
Date:   Mon Oct 16 16:40:08 2017 +0100

configure: enable the OpenCL ICD by default

Nearly all the distributions* that build Mesa OpenCL, enable the ICD.
Since building a non-ICD driver has the chance of conflicting with
existing OpenCL binary (libOpenCL.so).

Furthermore, some applications expect the library to provide
annotated/versioned symbols.

https://lists.freedesktop.org/archives/mesa-dev/2017-September/171093.html

*Fedora, Suse, Arch, Debian, Ubuntu, FreeBSD use the ICD
Gentoo manages the conflicting files via eselect.

Cc: Matt Turner <matts...@gmail.com>
Cc: Jan Vesely <jan.ves...@rutgers.edu>
Signed-off-by: Emil Velikov <emil.l.veli...@gmail.com>
Reviewed-by: Francisco Jerez <curroje...@riseup.net>
Reviewed-By: Aaron Watry <awa...@gmail.com>

---

 Makefile.am  | 1 +
 configure.ac | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/Makefile.am b/Makefile.am
index fe1ef94891..929fbceed3 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -35,6 +35,7 @@ AM_DISTCHECK_CONFIGURE_FLAGS = \
        --enable-glx-tls \
        --enable-nine \
        --enable-opencl \
+       --enable-opencl-icd \
        --enable-opengl \
        --enable-va \
        --enable-vdpau \
diff --git a/configure.ac b/configure.ac
index 0116b90743..266144b3f5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1255,9 +1255,9 @@ AC_ARG_ENABLE([opencl],
 AC_ARG_ENABLE([opencl_icd],
    [AS_HELP_STRING([--enable-opencl-icd],
           [Build an OpenCL ICD library to be loaded by an ICD implementation
-           @<:@default=disabled@:>@])],
+           @<:@default=enabled@:>@])],
     [enable_opencl_icd="$enableval"],
-    [enable_opencl_icd=no])
+    [enable_opencl_icd=yes])
 
 AC_ARG_ENABLE([gallium-tests],
     [AS_HELP_STRING([--enable-gallium-tests],

_______________________________________________
mesa-commit mailing list
mesa-commit@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-commit

Reply via email to