1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:47:34 +00:00

LibGPU: Don't dlopen using absolute path

This commit is contained in:
Sahan Fernando 2022-04-07 22:44:42 +10:00 committed by Andreas Kling
parent 36d9943d3a
commit 154cb4e368

View file

@ -20,7 +20,7 @@ namespace GPU {
static HashMap<String, String> const s_driver_path_map
{
#if defined(__serenity__)
{ "softgpu", "/usr/lib/libsoftgpu.so" },
{ "softgpu", "libsoftgpu.so" },
#elif defined(__APPLE__)
{ "softgpu", "./liblagom-softgpu.dylib" },
#else