Merge pull request #990 from napi-rs/avoid-lld-not-existed
fix(cli): handle lld not found
This commit is contained in:
commit
157a7f9c2c
1 changed files with 16 additions and 5 deletions
|
@ -8,9 +8,22 @@ const { platform, arch } = process
|
|||
|
||||
let nativeBinding = null
|
||||
let localFileExisted = false
|
||||
let isMusl = false
|
||||
let loadError = null
|
||||
|
||||
function isMusl() {
|
||||
// For Node 10
|
||||
if (!process.report || typeof process.report.getReport !== 'function') {
|
||||
try {
|
||||
return readFileSync('/usr/bin/ldd', 'utf8').includes('musl')
|
||||
} catch (e) {
|
||||
return false
|
||||
}
|
||||
} else {
|
||||
const { glibcVersionRuntime } = process.report.getReport().header
|
||||
return !Boolean(glibcVersionRuntime)
|
||||
}
|
||||
}
|
||||
|
||||
switch (platform) {
|
||||
case 'android':
|
||||
if (arch !== 'arm64') {
|
||||
|
@ -125,8 +138,7 @@ switch (platform) {
|
|||
case 'linux':
|
||||
switch (arch) {
|
||||
case 'x64':
|
||||
isMusl = readFileSync('/usr/bin/ldd', 'utf8').includes('musl')
|
||||
if (isMusl) {
|
||||
if (isMusl()) {
|
||||
localFileExisted = existsSync(
|
||||
join(__dirname, '${localName}.linux-x64-musl.node')
|
||||
)
|
||||
|
@ -155,8 +167,7 @@ switch (platform) {
|
|||
}
|
||||
break
|
||||
case 'arm64':
|
||||
isMusl = readFileSync('/usr/bin/ldd', 'utf8').includes('musl')
|
||||
if (isMusl) {
|
||||
if (isMusl()) {
|
||||
localFileExisted = existsSync(
|
||||
join(__dirname, '${localName}.linux-arm64-musl.node')
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue