PublishAotCross 1.0.0

dotnet add package PublishAotCross --version 1.0.0
NuGet\Install-Package PublishAotCross -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PublishAotCross" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PublishAotCross --version 1.0.0
#r "nuget: PublishAotCross, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install PublishAotCross as a Cake Addin
#addin nuget:?package=PublishAotCross&version=1.0.0

// Install PublishAotCross as a Cake Tool
#tool nuget:?package=PublishAotCross&version=1.0.0

PublishAotCross

This is a NuGet package with an MSBuild target to aid in crosscompilation with PublishAot. It helps resolving following error:

$ dotnet publish -r linux-x64
Microsoft.NETCore.Native.Publish.targets(59,5): error : Cross-OS native compilation is not supported.

This nuget package allows using Zig as the linker/sysroot to allow crosscompiling to linux-x64/linux-arm64/linux-musl-x64/linux-musl-arm64 from a Windows machine.

  1. Download an archive with Zig for your host machine, extract it and place it on your PATH. I'm using zig-windows-x86_64-0.11.0-dev.4006+bf827d0b5.zip.

  2. Optional: download LLVM. We only need llvm-objcopy executable so if you care about size, you can delete the rest. The executable needs to be on PATH - you could copy it next to the Zig executable. This step is optional and is required only to strip symbols (make the produced executables smaller). If you don't care about stripping symbols, you can skip it.

  3. To your project that is already using Native AOT, add a reference to this NuGet package.

  4. Publish for one of the newly available RIDs:

    • dotnet publish -r linux-x64
    • dotnet publish -r linux-arm64
    • dotnet publish -r linux-musl-x64
    • dotnet publish -r linux-musl-arm64

    If you skipped the second optional step to download llvm-objcopy, you must also pass /p:StripSymbols=false to the publish command, or you'll see an error instructing you to do that.

Even though Zig allows crosscompiling for Windows as well, it's not possible to crosscompile PublishAot like this due to ABI differences (MSVC vs. MingW ABI).

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

  • .NETStandard 2.0

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 482 7/18/2023