Skip to content

Commit

Permalink
Fix prebuild#76, armv6 detection
Browse files Browse the repository at this point in the history
Signed-off-by: paulober <[email protected]>
  • Loading branch information
paulober committed Sep 11, 2024
1 parent 7a458c7 commit c764234
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion node-gyp-build.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ var runtime = isElectron() ? 'electron' : (isNwjs() ? 'node-webkit' : 'node')
var arch = process.env.npm_config_arch || os.arch()
var platform = process.env.npm_config_platform || os.platform()
var libc = process.env.LIBC || (isAlpine(platform) ? 'musl' : 'glibc')
var armv = process.env.ARM_VERSION || (arch === 'arm64' ? '8' : vars.arm_version) || ''
// ARMv7 detection patched to avoid arm_version === "default" on other arm systems than arm64 ones
var armv = process.env.ARM_VERSION || (arch === 'arm64' ? '8' : (arch === 'arm' ? (vars.arm_version === 'default' ? '7' : vars.arm_version) : '')) || ''
var uv = (process.versions.uv || '').split('.')[0]

module.exports = load
Expand Down

0 comments on commit c764234

Please sign in to comment.