Skip to content

Commit

Permalink
Merge pull request #380 from ikvmnet/publishmissingnativelibs
Browse files Browse the repository at this point in the history
include ikvm.runtime dir in boot lib path
  • Loading branch information
wasabii committed Jul 9, 2023
2 parents 872ba10 + cd189aa commit 854ec19
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/IKVM.Runtime/JVM.Properties.cs
Original file line number Diff line number Diff line change
Expand Up @@ -649,6 +649,9 @@ static IEnumerable<string> GetBootLibraryPathsIter()
if (self == null)
yield break;

// implicitly include native libraries along side application (publish)
yield return self;

// search in runtime specific directories
foreach (var rid in RuntimeUtil.SupportedRuntimeIdentifiers)
yield return Path.Combine(self, "runtimes", rid, "native");
Expand Down

0 comments on commit 854ec19

Please sign in to comment.