[Bug 250307] graphics/mesa-dri: iris_dri.so is missing

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Mon Oct 19 22:15:45 UTC 2020


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=250307

Jung-uk Kim <jkim at FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jkim at FreeBSD.org

--- Comment #7 from Jung-uk Kim <jkim at FreeBSD.org> ---
(In reply to Jan Beich from comment #6)
It seems loader.c must be compiled with "-DPREFER_IRIS".  Applying the
following patch and rebuilding/reinstalling graphics/mesa-libs fixed the
problem for me.

--- src/loader/meson.build.orig 2020-09-28 22:52:12 UTC
+++ src/loader/meson.build
@@ -41,7 +41,7 @@ loader_c_args = [
   '-DDEFAULT_DRIVER_DIR="@0@"'.format(dri_search_path),
 ]

-if with_gallium_iris and get_option('prefer-iris')
+if get_option('prefer-iris')
   loader_c_args += ['-DPREFER_IRIS']
 endif

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-x11 mailing list