Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 19 Oct 2020 22:15:44 +0000
From:      bugzilla-noreply@freebsd.org
To:        x11@FreeBSD.org
Subject:   [Bug 250307] graphics/mesa-dri: iris_dri.so is missing
Message-ID:  <bug-250307-7141-9qrPZoL0A9@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-250307-7141@https.bugs.freebsd.org/bugzilla/>
References:  <bug-250307-7141@https.bugs.freebsd.org/bugzilla/>

next in thread | previous in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D250307

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

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

--- Comment #7 from Jung-uk Kim <jkim@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 =3D [
   '-DDEFAULT_DRIVER_DIR=3D"@0@"'.format(dri_search_path),
 ]

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

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-250307-7141-9qrPZoL0A9>