mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-04 00:27:47 +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
Notes:
sideshowbarker
2024-07-17 16:42:19 +09:00
Author: https://github.com/ADKaster
Commit: eef989f9ed
Pull-request: https://github.com/SerenityOS/serenity/pull/15260
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