Skip to content

Commit

Permalink
fix(cppclient): Remove extension from dhclient and dhcore for cross-p…
Browse files Browse the repository at this point in the history
…latform compatibility (deephaven#5706)

Windows expects .dll and Linux expects .so, but the machinery behind
LibraryImport seems to know to do the right thing.
  • Loading branch information
kosak authored Jul 2, 2024
1 parent 839e607 commit ff09e29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions csharp/client/DeephavenClient/Interop/InteropSupport.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
namespace Deephaven.DeephavenClient.Interop;

internal class LibraryPaths {
internal const string Dhcore = "dhcore.dll";
internal const string Dhclient = "dhclient.dll";
internal const string Dhcore = "dhcore";
internal const string Dhclient = "dhclient";
}

/// <summary>
Expand Down

0 comments on commit ff09e29

Please sign in to comment.