Skip to content

Commit 2abc946

Browse files
authoredDec 9, 2022
fix(cli): zig cross armv7 (#1384)
1 parent 00b09bc commit 2abc946

File tree

5 files changed

+36
-23
lines changed

5 files changed

+36
-23
lines changed
 

‎.github/workflows/linux-aarch64.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ name: Linux-aarch64
22

33
env:
44
DEBUG: 'napi:*'
5-
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER: 'aarch64-linux-gnu-gcc-9'
65

76
on:
87
push:
@@ -41,7 +40,7 @@ jobs:
4140
path: |
4241
~/.cargo/registry
4342
~/.cargo/git
44-
key: stable-linux-aarch64-gnu-node@16-cargo-cache
43+
key: stable-linux-aarch64-gnu-node@18-cargo-cache
4544

4645
- name: Install ziglang
4746
uses: goto-bus-stop/setup-zig@v2

‎cli/src/build.ts

+22-20
Original file line numberDiff line numberDiff line change
@@ -58,12 +58,14 @@ function processZigLinkerArgs(platform: string, args: string[]) {
5858
return newArgs
5959
}
6060
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')
6769
}
6870
return args
6971
}
@@ -328,10 +330,11 @@ export class BuildCommand extends Command {
328330
this.zigABIVersion ?? (isCrossForLinux && triple.abi === 'gnu')
329331
? DEFAULT_GLIBC_TARGET
330332
: null
331-
const zigTarget = `${ZIG_PLATFORM_TARGET_MAP[triple.raw]}${
333+
const mappedZigTarget = ZIG_PLATFORM_TARGET_MAP[triple.raw]
334+
const zigTarget = `${mappedZigTarget}${
332335
zigABIVersion ? `.${zigABIVersion}` : ''
333336
}`
334-
if (!zigTarget) {
337+
if (!mappedZigTarget) {
335338
throw new Error(`${triple.raw} can not be cross compiled by zig`)
336339
}
337340
const paths = envPaths('napi-rs')
@@ -371,24 +374,22 @@ export class BuildCommand extends Command {
371374
)
372375
await writeFileAsync(
373376
CCWrapperShell,
374-
`${SHEBANG_SH}zig cc -target ${zigTarget} ${forwardArgs}`,
377+
`${SHEBANG_SH}node ${linkerWrapper} cc ${forwardArgs}`,
375378
{
376379
mode: '777',
377380
},
378381
)
379382
await writeFileAsync(
380383
CXXWrapperShell,
381-
`${SHEBANG_SH}zig c++ -target ${zigTarget} ${forwardArgs}`,
384+
`${SHEBANG_SH}node ${linkerWrapper} c++ ${forwardArgs}`,
382385
{
383386
mode: '777',
384387
},
385388
)
386389

387390
await writeFileAsync(
388391
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('${
392393
triple.raw
393394
}', process.argv.slice(2)), '-target', '${zigTarget}'], { stdio: 'inherit', shell: true })\nwriteFileSync('${linkerWrapper.replaceAll(
394395
'\\',
@@ -822,22 +823,23 @@ async function writeJsBinding(
822823

823824
async function patchArmFeaturesHForArmTargets() {
824825
let zigExePath: string
826+
let zigLibDir: string | undefined
825827
try {
826828
const zigEnv = JSON.parse(execSync(`zig env`, { encoding: 'utf8' }).trim())
827829
zigExePath = zigEnv['zig_exe']
830+
zigLibDir = zigEnv['lib_dir']
828831
} catch (e) {
829832
throw new Error(
830833
'Cannot get zig env correctly, please ensure the zig is installed correctly on your system',
831834
)
832835
}
833836
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+
})
841843
} catch (e) {
842844
throw new Error(
843845
`Cannot patch arm-features.h, error: ${

‎examples/napi/Cargo.toml

+8
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ version = "0.1.0"
88
[lib]
99
crate-type = ["cdylib"]
1010

11+
[features]
12+
snmalloc = ["snmalloc-rs"]
13+
1114
[dependencies]
1215
chrono = "0.4"
1316
futures = "0.3"
@@ -27,6 +30,11 @@ serde_derive = "1"
2730
serde_json = "1"
2831
tokio = { version = "1.20.0", features = ["full"] }
2932

33+
[dependencies.snmalloc-rs]
34+
version = "0.3"
35+
features = ["build_cc", "local_dynamic_tls"]
36+
optional = true
37+
3038
[build-dependencies]
3139
napi-build = { path = "../../crates/build" }
3240

‎examples/napi/src/lib.rs

+4
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ extern crate napi_derive;
77
#[macro_use]
88
extern crate serde_derive;
99

10+
#[cfg(feature = "snmalloc")]
11+
#[global_allocator]
12+
static ALLOC: snmalloc_rs::SnMalloc = snmalloc_rs::SnMalloc;
13+
1014
#[napi]
1115
/// This is a const
1216
pub const DEFAULT_COST: u32 = 12;

‎tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@
2727
"lib": ["dom", "DOM.Iterable", "ES2019", "ES2020", "esnext"]
2828
},
2929
"include": ["."],
30-
"exclude": ["node_modules", "bench", "cli/scripts", "scripts"]
30+
"exclude": ["node_modules", "bench", "cli/scripts", "scripts", "target"]
3131
}

0 commit comments

Comments
 (0)
Please sign in to comment.