We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d86a1dc commit ab1209bCopy full SHA for ab1209b
1 file changed
common.gypi
@@ -529,11 +529,13 @@
529
}],
530
['_toolset=="host"', {
531
'conditions': [
532
- [ 'host_arch=="ia32"', {
+ # nodejs-mobile patch: https://github.com/nodejs/node/pull/57748
533
+ [ 'host_arch=="ia32" or (target_arch=="ia32" or target_arch=="arm")', {
534
'cflags': [ '-m32' ],
535
'ldflags': [ '-m32' ],
536
- [ 'host_arch=="x64"', {
537
538
+ [ 'host_arch=="x64" and (target_arch=="x64" or target_arch=="arm64")', {
539
'cflags': [ '-m64' ],
540
'ldflags': [ '-m64' ],
541
0 commit comments