@@ -14,7 +14,7 @@ export const nativePackageSpecs = Object.freeze([
1414 nativePackage ( { directory : 'cli-darwin-arm64' , runner : 'macos-15' , target : 'aarch64-apple-darwin' , os : 'darwin' , cpu : 'arm64' , format : 'mach-o' } ) ,
1515 nativePackage ( { directory : 'cli-darwin-x64' , runner : 'macos-15-intel' , target : 'x86_64-apple-darwin' , os : 'darwin' , cpu : 'x64' , format : 'mach-o' } ) ,
1616 nativePackage ( { directory : 'cli-linux-arm64-gnu' , runner : 'ubuntu-24.04-arm' , target : 'aarch64-unknown-linux-gnu' , os : 'linux' , cpu : 'arm64' , libc : 'glibc' , format : 'elf' } ) ,
17- nativePackage ( { directory : 'cli-linux-arm64-musl' , runner : 'ubuntu-24.04-arm' , target : 'aarch64-unknown-linux-musl' , os : 'linux' , cpu : 'arm64' , libc : 'musl' , format : 'elf' } ) ,
17+ nativePackage ( { directory : 'cli-linux-arm64-musl' , runner : 'ubuntu-24.04-arm' , target : 'aarch64-unknown-linux-musl' , os : 'linux' , cpu : 'arm64' , libc : 'musl' , format : 'elf' , cflags : '-mno-outline-atomics' } ) ,
1818 nativePackage ( { directory : 'cli-linux-x64-gnu' , runner : 'ubuntu-24.04' , target : 'x86_64-unknown-linux-gnu' , os : 'linux' , cpu : 'x64' , libc : 'glibc' , format : 'elf' } ) ,
1919 nativePackage ( { directory : 'cli-linux-x64-musl' , runner : 'ubuntu-24.04' , target : 'x86_64-unknown-linux-musl' , os : 'linux' , cpu : 'x64' , libc : 'musl' , format : 'elf' } ) ,
2020 nativePackage ( { directory : 'cli-win32-arm64-msvc' , runner : 'windows-11-arm' , target : 'aarch64-pc-windows-msvc' , os : 'win32' , cpu : 'arm64' , format : 'pe' } ) ,
@@ -26,6 +26,7 @@ export function nativeReleaseMatrix() {
2626 include : nativePackageSpecs . map ( spec => ( {
2727 directory : spec . directory ,
2828 executable : spec . executable ,
29+ cflags : spec . cflags ?? '' ,
2930 libc : spec . libc ?? 'none' ,
3031 runner : spec . runner ,
3132 target : spec . target ,
0 commit comments