Skip to content

Commit

Permalink
Use libdl.so.2 instead of libdl (#1499)
Browse files Browse the repository at this point in the history
Nearly all (or all if only counting LSB conforming) Linux distros have libdl.so.2, and usually don't have a libdl.so symlink unless dev packages are installed.
  • Loading branch information
CasualPokePlayer authored Jul 4, 2023
1 parent 3921e58 commit d5f1f29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Core/Silk.NET.Core/Loader/Libdl.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Silk.NET.Core.Loader
{
internal static class Libdl
{
private const string LibName = "libdl";
private const string LibName = "libdl.so.2";

public const int RtldNow = 0x002;

Expand Down

0 comments on commit d5f1f29

Please sign in to comment.