Skip to content

Commit 05c3d3b

Browse files
Use libdl.so.2 instead of libdl
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. Fixes dotnet#1492
1 parent 55abc91 commit 05c3d3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Core/Silk.NET.Core/Loader/Libdl.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace Silk.NET.Core.Loader
88
{
99
internal static class Libdl
1010
{
11-
private const string LibName = "libdl";
11+
private const string LibName = "libdl.so.2";
1212

1313
public const int RtldNow = 0x002;
1414

0 commit comments

Comments
 (0)