mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 18:27:35 +00:00
LibGPU: Don't use relative paths for libsoftgpu in Lagom environments
We can count on the dynamic loader for each platform, and the RPATH of our build infrastrucuture, to load the lib up automagically.
This commit is contained in:
parent
8ed5ed3ec0
commit
eef989f9ed
1 changed files with 2 additions and 2 deletions
|
@ -18,9 +18,9 @@ static HashMap<String, String> const s_driver_path_map
|
|||
#if defined(__serenity__)
|
||||
{ "softgpu", "libsoftgpu.so.serenity" },
|
||||
#elif defined(__APPLE__)
|
||||
{ "softgpu", "./liblagom-softgpu.dylib" },
|
||||
{ "softgpu", "liblagom-softgpu.dylib" },
|
||||
#else
|
||||
{ "softgpu", "./liblagom-softgpu.so" },
|
||||
{ "softgpu", "liblagom-softgpu.so.0" },
|
||||
#endif
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue