@@ -58,12 +58,14 @@ function processZigLinkerArgs(platform: string, args: string[]) {
58
58
return newArgs
59
59
}
60
60
if ( platform . includes ( 'linux' ) ) {
61
- return args . map ( ( arg ) => {
62
- if ( arg === '-lgcc_s' ) {
63
- return '-lunwind'
64
- }
65
- return arg
66
- } )
61
+ return args
62
+ . map ( ( arg ) => {
63
+ if ( arg === '-lgcc_s' ) {
64
+ return '-lunwind'
65
+ }
66
+ return arg
67
+ } )
68
+ . filter ( ( arg ) => arg !== '-march=armv7-a' )
67
69
}
68
70
return args
69
71
}
@@ -328,10 +330,11 @@ export class BuildCommand extends Command {
328
330
this . zigABIVersion ?? ( isCrossForLinux && triple . abi === 'gnu' )
329
331
? DEFAULT_GLIBC_TARGET
330
332
: null
331
- const zigTarget = `${ ZIG_PLATFORM_TARGET_MAP [ triple . raw ] } ${
333
+ const mappedZigTarget = ZIG_PLATFORM_TARGET_MAP [ triple . raw ]
334
+ const zigTarget = `${ mappedZigTarget } ${
332
335
zigABIVersion ? `.${ zigABIVersion } ` : ''
333
336
} `
334
- if ( ! zigTarget ) {
337
+ if ( ! mappedZigTarget ) {
335
338
throw new Error ( `${ triple . raw } can not be cross compiled by zig` )
336
339
}
337
340
const paths = envPaths ( 'napi-rs' )
@@ -371,24 +374,22 @@ export class BuildCommand extends Command {
371
374
)
372
375
await writeFileAsync (
373
376
CCWrapperShell ,
374
- `${ SHEBANG_SH } zig cc -target ${ zigTarget } ${ forwardArgs } ` ,
377
+ `${ SHEBANG_SH } node ${ linkerWrapper } cc ${ forwardArgs } ` ,
375
378
{
376
379
mode : '777' ,
377
380
} ,
378
381
)
379
382
await writeFileAsync (
380
383
CXXWrapperShell ,
381
- `${ SHEBANG_SH } zig c++ -target ${ zigTarget } ${ forwardArgs } ` ,
384
+ `${ SHEBANG_SH } node ${ linkerWrapper } c++ ${ forwardArgs } ` ,
382
385
{
383
386
mode : '777' ,
384
387
} ,
385
388
)
386
389
387
390
await writeFileAsync (
388
391
linkerWrapper ,
389
- `${ SHEBANG_NODE } const{writeFileSync} = require('fs')\n${ processZigLinkerArgs . toString ( ) } \nconst {status} = require('child_process').spawnSync('zig', ['${
390
- triple . platform === 'win32' ? 'c++' : 'cc'
391
- } ', ...processZigLinkerArgs('${
392
+ `${ SHEBANG_NODE } const{writeFileSync} = require('fs')\n${ processZigLinkerArgs . toString ( ) } \nconst {status} = require('child_process').spawnSync('zig', [process.argv[2] === "c++" || process.argv[2] === "cc" ? "" : "cc", ...processZigLinkerArgs('${
392
393
triple . raw
393
394
} ', process.argv.slice(2)), '-target', '${ zigTarget } '], { stdio: 'inherit', shell: true })\nwriteFileSync('${ linkerWrapper . replaceAll (
394
395
'\\' ,
@@ -822,22 +823,23 @@ async function writeJsBinding(
822
823
823
824
async function patchArmFeaturesHForArmTargets ( ) {
824
825
let zigExePath : string
826
+ let zigLibDir : string | undefined
825
827
try {
826
828
const zigEnv = JSON . parse ( execSync ( `zig env` , { encoding : 'utf8' } ) . trim ( ) )
827
829
zigExePath = zigEnv [ 'zig_exe' ]
830
+ zigLibDir = zigEnv [ 'lib_dir' ]
828
831
} catch ( e ) {
829
832
throw new Error (
830
833
'Cannot get zig env correctly, please ensure the zig is installed correctly on your system' ,
831
834
)
832
835
}
833
836
try {
834
- await writeFileAsync (
835
- join ( zigExePath , '../lib/libc/glibc/sysdeps/arm/arm-features.h' ) ,
836
- ARM_FEATURES_H ,
837
- {
838
- mode : 0o644 ,
839
- } ,
840
- )
837
+ const p = zigLibDir
838
+ ? join ( zigLibDir , 'libc/glibc/sysdeps/arm/arm-features.h' )
839
+ : join ( zigExePath , '../lib/libc/glibc/sysdeps/arm/arm-features.h' )
840
+ await writeFileAsync ( p , ARM_FEATURES_H , {
841
+ mode : 0o644 ,
842
+ } )
841
843
} catch ( e ) {
842
844
throw new Error (
843
845
`Cannot patch arm-features.h, error: ${
0 commit comments