Open kjpgit opened 1 year ago
I think this is less a problem with AOT, and more a problem with dotnet publish
integration/support: libMonoPosixHelper.so
is a native library, and thus outside the confines of AOT, but it does need to be separately packaged with your application and present in a directory that dlopen()
will search for, whether that be some system-wide location or by having environment variables such as LD_LIBRARY_PATH
include the directory that contains libMonoPosixHelper.so
.
I did
dotnet publish
with C# AOT, got no warnings. PublishAot=True in csproj.At runtime, when I call
execve()
: