Package Details: lib32-mesa-git 25.0.0_devel.200052.bed748d5f6d.d41d8cd-1

Git Clone URL: https://aur.archlinux.org/lib32-mesa-git.git (read-only, click to copy)
Package Base: lib32-mesa-git
Description: an open-source implementation of the OpenGL specification, git version
Upstream URL: https://www.mesa3d.org
Licenses: custom
Conflicts: lib32-libva-mesa-driver, lib32-mesa, lib32-mesa-libgl, lib32-mesa-vdpau, lib32-vulkan-intel, lib32-vulkan-mesa-layers, lib32-vulkan-radeon
Provides: lib32-libva-mesa-driver, lib32-mesa, lib32-mesa-libgl, lib32-mesa-vdpau, lib32-opengl-driver, lib32-vulkan-driver, lib32-vulkan-intel, lib32-vulkan-mesa-layers, lib32-vulkan-radeon
Submitter: None
Maintainer: rjahanbakhshi (Lone_Wolf)
Last Packager: rjahanbakhshi
Votes: 44
Popularity: 0.009266
First Submitted: 2009-12-18 18:42 (UTC)
Last Updated: 2025-01-20 16:11 (UTC)

Required by (93)

Sources (3)

Pinned Comments

Lone_Wolf commented on 2024-02-14 11:49 (UTC)

Mesa commit b52e25d3 breaks intel iris & anv build UNLESS OpenCL support is present.

Incase you don't need those drivers, a temporary workaround is to disable them.

lib32-mesa-minimal-git is also affected.

Lone_Wolf commented on 2023-11-02 16:03 (UTC) (edited on 2023-11-02 16:05 (UTC) by Lone_Wolf)

@RPINerd in https://aur.archlinux.org/packages/lib32-mesa-git#comment-941648

Users of this package are supposed to (re)build lib32-mesa-git everytime mesa-git changes to avoid such issues.

I'm certain I have stated that in the past, but it may have been lost in the older pages of comments.

Lone_Wolf commented on 2019-05-09 13:30 (UTC)

This package now uses an environment variable to determine which llvm package it will be built against. Check PKGBUILD for details.

Latest Comments

« First ‹ Previous 1 .. 8 9 10 11 12 13 14 15 16 17 18 .. 32 Next › Last »

Lone_Wolf commented on 2019-11-06 00:23 (UTC)

What videocard/driver do you use, snoop05 ?

With zink added I still get below errors for lib32-mesa-git (I got an AMD RX 580 )

$ glxinfo32
name of display: :0
libGL error: MESA-LOADER: failed to open radeonsi (search paths /usr/lib32/dri)
libGL error: failed to load driver: radeonsi
libGL error: MESA-LOADER: failed to open radeonsi (search paths /usr/lib32/dri)
libGL error: failed to load driver: radeonsi
libGL error: MESA-LOADER: failed to open swrast (search paths /usr/lib32/dri)
libGL error: failed to load driver: swrast
X Error of failed request:  GLXBadContext
  Major opcode of failed request:  152 (GLX)
  Minor opcode of failed request:  6 (X_GLXIsDirect)
  Serial number of failed request:  60
  Current serial number in output stream:  59
$ 

Snoop05 commented on 2019-11-05 22:48 (UTC)

I think zink can be added, it builds and runs just fine for me, with both stable and minimal-git llvm.

Lone_Wolf commented on 2019-10-30 21:31 (UTC) (edited on 2019-10-30 21:31 (UTC) by Lone_Wolf)

Snoop05,

I tried but didn't get a working package when building zink against lib32-llvm-minimal-git .

(glxinfo32 failed)

No idea when I'll have time to investigate.

Snoop05 commented on 2019-10-30 06:56 (UTC)

Can we get zink for lib32 too?

Lone_Wolf commented on 2019-09-02 13:22 (UTC) (edited on 2019-09-02 13:22 (UTC) by Lone_Wolf)

Done, thanks for the alert Demize.

demize commented on 2019-08-31 13:21 (UTC)

Please switch your PKG_CONFIG variable to point to i686-pc-linux-gnu-pkg-config instead of pkg-config-32, as the latter will be going away.

Lone_Wolf commented on 2019-06-18 21:30 (UTC)

Steinbuch, there are several commands (see below) in the package section that should prevent that. Are you building with makepkg ?

  # remove files provided by mesa-git
  rm -rf "$pkgdir"/etc
  rm -rf "$pkgdir"/usr/include
  rm -rf "$pkgdir"/usr/share/glvnd/
  rm -rf "$pkgdir"/usr/share/drirc.d/
  rm -rf "$pkgdir"/usr/share/vulkan/explicit_layer.d/

steinbuch commented on 2019-06-17 14:19 (UTC)

Files like /etc/OpenCL/vendors/mesa.icd and /usr/include/* are conflicting with mesa-git. Is this intentional?

bpierre commented on 2019-05-30 18:17 (UTC)

@Lone_Wolf: you missed a "$NINJAFLAGS" at the top of the package function:

 PKGBUILD | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git i/PKGBUILD w/PKGBUILD
index 12d6d42..164a148 100644
--- i/PKGBUILD
+++ w/PKGBUILD
@@ -138,7 +138,7 @@ build () {
 }

 package() {
-  DESTDIR="$pkgdir" ninja "$NINJAFLAGS" -C _build install
+  DESTDIR="$pkgdir" ninja $NINJAFLAGS -C _build install

   # remove files provided by mesa-git
   rm -rf "$pkgdir"/etc

Lone_Wolf commented on 2019-05-09 13:30 (UTC)

This package now uses an environment variable to determine which llvm package it will be built against. Check PKGBUILD for details.