o
odinpkg.dev
packages / library / odin-coreclr

odin-coreclr

496c5b6library

Core Common Language Runtime (CLR) for Odin

No license · updated 3 months ago

Core Common Language Runtime (CLR)

to list dotnet runtimes use:

dotnet --list-runtimes

One way to use the lib is to add it as a git submodule:

git submodule add git@github.com:Hyrtwol/odin-coreclr.git coreclr

ilasm.exe is from runtime.win-x64.microsoft.netcore.ilasm.8.0.0.nupkg

ildasm.exe is from runtime.win-x64.microsoft.netcore.ildasm.8.0.0.nupkg

#ifdef __linux__
const string libcoreclr = "libcoreclr.so";
#elif __APPLE__
const string libcoreclr = "libcoreclr.dylib";
#else
const string libcoreclr = "coreclr.dll";
#endif