Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 690184 - x11-drivers/nvidia-drivers on non-multilib profiles should install libnvidia-cbl.so libnvidia-rtcore.so
Summary: x11-drivers/nvidia-drivers on non-multilib profiles should install libnvidia-...
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: Current packages (show other bugs)
Hardware: All Linux
: Normal normal (vote)
Assignee: Jeroen Roovers (RETIRED)
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2019-07-18 18:59 UTC by jaynus
Modified: 2020-07-29 14:41 UTC (History)
1 user (show)

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description jaynus 2019-07-18 18:59:44 UTC
nvidia RTX drivers added two new .so files which are needed for actually using the new raytracing extensions (VK_NV_ray_tracing and family).

These are documented in the NVIDIA_Changelog file as:

    * Implemented support for Vulkan real-time ray tracing extensions
      (VK_NV_raytracing). Two new libraries, libnvidia-rtcore.so and
      libnvidia-cbl.so, have been added to support the new functionality.
      These new libraries are needed by Vulkan at run-time to expose the
      new extension. If they are not found, Vulkan will continue to work
      without VK_NV_raytracing support.

Which means the ebuild must include:
- libnvidia-rtcore.so
- libnvidia-cbl.so

Which are not currently included in the installation.
Comment 1 jaynus 2019-10-26 00:28:47 UTC
The latest 435.21 ebuild added rtcore/cbl/optix correctly. HOWEVER, this is gated behind "has_multilib_profile", which is not a requirement. This has_multilib_profile check should be removed.
Comment 2 Jeroen Roovers (RETIRED) gentoo-dev 2019-10-26 08:55:30 UTC
commit 8b7dcee84b9c2f582939e2589e15868b6500094b
Author: Jeroen Roovers <jer@gentoo.org>
Date:   Sun Sep 30 22:46:57 2018 +0200

    x11-drivers/nvidia-drivers: Install libnvidia-cbl/libnvidia-rtcore

    Package-Manager: Portage-2.3.50, Repoman-2.3.11
    Signed-off-by: Jeroen Roovers <jer@gentoo.org>

commit 9f7bfa6b3422a03bd225f7c859dc8f4fa946e3d5
Author: Jeroen Roovers <jer@gentoo.org>
Date:   Sun Sep 30 22:32:54 2018 +0200

    x11-drivers/nvidia-drivers: Install libnvoptix.so

    Package-Manager: Portage-2.3.50, Repoman-2.3.11
    Signed-off-by: Jeroen Roovers <jer@gentoo.org>
Comment 3 Larry the Git Cow gentoo-dev 2020-07-29 09:07:46 UTC
The bug has been closed via the following commit(s):

https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e79d02bbd2f23cb4c5853f2bc1658a04e8babc65

commit e79d02bbd2f23cb4c5853f2bc1658a04e8babc65
Author:     Jeroen Roovers <jer@gentoo.org>
AuthorDate: 2020-07-29 09:06:26 +0000
Commit:     Jeroen Roovers <jer@gentoo.org>
CommitDate: 2020-07-29 09:07:43 +0000

    x11-drivers/nvidia-drivers: Install 64-bit libs on non-multilib
    
    Checking for has_multilib_profile is not required for installing 64-bit
    libraries.
    
    Thanks to jaynus in https://bugs.gentoo.org/690184#c1 for his admirable
    patience.
    
    Package-Manager: Portage-3.0.1, Repoman-2.3.23
    Closes: https://bugs.gentoo.org/690184
    Signed-off-by: Jeroen Roovers <jer@gentoo.org>

 x11-drivers/nvidia-drivers/nvidia-drivers-390.132-r1.ebuild | 4 ++--
 x11-drivers/nvidia-drivers/nvidia-drivers-390.132-r2.ebuild | 4 ++--
 x11-drivers/nvidia-drivers/nvidia-drivers-390.138.ebuild    | 4 ++--
 x11-drivers/nvidia-drivers/nvidia-drivers-430.64-r5.ebuild  | 4 ++--
 x11-drivers/nvidia-drivers/nvidia-drivers-435.21-r5.ebuild  | 4 ++--
 x11-drivers/nvidia-drivers/nvidia-drivers-440.100-r1.ebuild | 4 ++--
 x11-drivers/nvidia-drivers/nvidia-drivers-450.57.ebuild     | 4 ++--
 7 files changed, 14 insertions(+), 14 deletions(-)
Comment 4 jaynus 2020-07-29 14:41:35 UTC
Looks great. Thanks!