Package Details: lib32-amdgpu-pro-oglp 24.10_1787253-1

Git Clone URL: https://aur.archlinux.org/amdgpu-pro-installer.git (read-only, click to copy)
Package Base: amdgpu-pro-installer
Description: AMDGPU Pro OpenGL driver (32-bit)
Upstream URL: https://www.amd.com/en/support/kb/release-notes/rn-amdgpu-unified-linux-22-40
Licenses: custom: AMDGPU-PRO EULA
Groups: Radeon_Software_for_Linux
Provides: lib32-libgl
Submitter: LEW21
Maintainer: Ashark (mesmer)
Last Packager: mesmer
Votes: 124
Popularity: 0.81
First Submitted: 2016-03-28 22:44 (UTC)
Last Updated: 2024-07-02 19:24 (UTC)

Dependencies (1)

Required by (70)

Sources (18)

Pinned Comments

mesmer commented on 2022-12-23 04:31 (UTC) (edited on 2023-05-28 19:28 (UTC) by mesmer)

IF PROBLEM HAPPEN

this package is our try to put amdgpu in ARCH, but this could break or have problems as amd update and change their packages for ubuntu

if anything happens you can always download a older tag in https://github.com/Ashark/archlinux-amdgpu-pro/releases and get the PKGBUILD there, and use makepkg with that build while we update or try to fix :)

ALWAYS USE LINUX-FIRMWARE-GIT IF LATEST DRIVER FAIL BEFORE ISSUE SOME ERROR

https://aur.archlinux.org/packages/linux-firmware-git

Ashark commented on 2019-12-09 20:52 (UTC) (edited on 2022-12-06 08:45 (UTC) by Ashark)

PKGBUILD generator is located here: https://github.com/Ashark/archlinux-amdgpu-pro

AMDGPU PRO wiki page: https://wiki.archlinux.org/index.php/AMDGPU_PRO

New versions will appear here: https://repo.radeon.com/amdgpu/.

Latest Comments

« First ‹ Previous 1 .. 52 53 54 55 56 57 58 59 Next › Last »

lahwaacz commented on 2016-05-28 09:52 (UTC)

The PKGBUILD does not specify the license: https://wiki.archlinux.org/index.php/PKGBUILD#license

Corngood commented on 2016-05-27 03:15 (UTC)

My PR is also now updated to 16.20.3. It needed a couple of changes to the generator to deal with new dependencies, but it appears to be working. @Themaister looks like the surface extension is fixed in this version.

storma commented on 2016-05-25 12:58 (UTC)

@LiberteCzech I made the same changes as you did and it works fine. Needed the tweaks from below to get it running though.

LiberteCzech commented on 2016-05-25 09:10 (UTC)

Here is the latest driver. https://github.com/LiberteCzech/archlinux-amdgpu I used the corngood and LEW21 work. If you have time, you can try and let you know if it works. I did not have time to test it yet.

Corngood commented on 2016-05-19 21:54 (UTC) (edited on 2016-05-19 21:56 (UTC) by Corngood)

Mine looks similar to yours (I also get the (EE) about the hybrid driver) up until: [ 78.193] (II) LoadModule: "dri2" [ 78.193] (II) Module "dri2" already built-in [ 78.198] (II) glamor: OpenGL accelerated X.org driver based. [ 78.284] (II) glamor: EGL version 1.4: Where yours says: [ 557.285] (II) AMDGPU(0): GPU accel disabled or not working, using shadowfb for KMS Maybe check if EGL is correct: $ ldconfig -p | grep libEGL libEGL.so.1 (libc6,x86-64) => /usr/lib/x86_64-linux-gnu/amdgpu-pro/libEGL.so.1 The only active xorg.conf files I have are: /usr/share/X11/xorg.conf.d/01-amdgpu-pro.conf /usr/share/X11/xorg.conf.d/10-evdev.conf /usr/share/X11/xorg.conf.d/10-quirks.conf So maybe get rid of any others in there or in /etc/. After that I'd probably use LD_DEBUG and strace to figure out what it's doing before it prints those messages. Then maybe build a debug xorg-server. I'm using xorg-server 1.18.3-1 and kernel 4.5.4 w/ CIK. I assume you are on similar versions and on x86_64? Edit: also I'm on HAWAII, not BONAIRE.

Themaister commented on 2016-05-19 08:42 (UTC) (edited on 2016-05-19 09:46 (UTC) by Themaister)

Hm, still doesn't work. Here's a paste of Xorg.0.log. I'm using a GCN 1.1 card with CIK enabled in kernel if that helps. ldconfig is pointing to the right place. It seems like it's failing something, trying fall back to software which doesn't work. http://pastebin.com/bBNvgWAe Plain MESA with AMDGPU is working however.

Corngood commented on 2016-05-18 15:02 (UTC)

Sounds like the problem I had before I had ld.so.conf set up properly. Maybe 'ldconfig -p | grep libGL.so' and make sure it's finding the amdgpu-pro one rather than mesa? You could try the PKGBUILD from my pull request as it fixes the ld.so.conf. https://github.com/LEW21/archlinux-amdgpu/pull/1

Themaister commented on 2016-05-18 14:57 (UTC)

I'm also struggling to get GLX working at all. Either I get a segfault if I enable DRI3 or I don't get GLX at all ... Do you need to do something special to get GLX working?

Corngood commented on 2016-05-18 14:16 (UTC)

@libercv Yeah, I noticed that when I went through and fixed up the PKGBUILD. Now it makes a link for the ld and modprobe configs. PR is up at https://github.com/LEW21/archlinux-amdgpu/pull/1 if anyone wants to take a look. @Themaister Yeah, I have that problem too. It was broken by this change in the loader: https://github.com/KhronosGroup/Vulkan-LoaderAndValidationLayers/commit/c666cff44f25c1db0451f52818807683b0346f00 which was merged in 1.0.8. If I use 1.0.6 I get the extension, and it seems to work fine. It's a bug in the AMD vulkan ICD, which only reports VK_KHR_swapchain and VK_KHR_xbc_surface. I guess it worked by accident before that loader change. I tried reporting it on community.amd.com, but I'm still waiting for my post to be approved. If anyone has a better way of reporting bugs to them, let me know.

Themaister commented on 2016-05-18 14:07 (UTC)

For some reason, VK_KHR_surface is missing for me (VK_KHR_xcb_surface is present though). Anyone else having same issue?