mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
d06ff289a0
This adds the required files for supporting openssl on arm64. This uses the same configuration that can be found in https://github.com/openssl/openssl/pull/12369 to generate the required files. PR-URL: https://github.com/nodejs/node/pull/34238 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ash Cripps <ashley.cripps@ibm.com>
50 lines
2.6 KiB
Python
50 lines
2.6 KiB
Python
{
|
|
'conditions': [
|
|
['target_arch=="ppc" and OS=="aix"', {
|
|
'includes': ['config/archs/aix-gcc/asm_avx2/openssl-cl.gypi'],
|
|
}, 'target_arch=="ppc" and OS=="linux"', {
|
|
'includes': ['config/archs/linux-ppc/asm_avx2/openssl-cl.gypi'],
|
|
}, 'target_arch=="ppc64" and OS=="aix"', {
|
|
'includes': ['config/archs/aix64-gcc/asm_avx2/openssl-cl.gypi'],
|
|
}, 'target_arch=="ppc64" and OS=="linux" and node_byteorder =="little"', {
|
|
'includes': ['config/archs/linux-ppc64le/asm_avx2/openssl-cl.gypi'],
|
|
}, 'target_arch=="ppc64" and OS=="linux"', {
|
|
'includes': ['config/archs/linux-ppc64/asm_avx2/openssl-cl.gypi'],
|
|
}, 'target_arch=="s390x" and OS=="linux"', {
|
|
'includes': ['config/archs/linux64-s390x/asm_avx2/openssl-cl.gypi'],
|
|
}, 'target_arch=="arm" and OS=="linux"', {
|
|
'includes': ['config/archs/linux-armv4/asm_avx2/openssl-cl.gypi'],
|
|
}, 'target_arch=="arm64" and OS=="linux"', {
|
|
'includes': ['config/archs/linux-aarch64/asm_avx2/openssl-cl.gypi'],
|
|
}, 'target_arch=="ia32" and OS=="freebsd"', {
|
|
'includes': ['config/archs/BSD-x86/asm_avx2/openssl-cl.gypi'],
|
|
}, 'target_arch=="ia32" and OS=="linux"', {
|
|
'includes': ['config/archs/linux-elf/asm_avx2/openssl-cl.gypi'],
|
|
}, 'target_arch=="ia32" and OS=="mac"', {
|
|
'includes': ['config/archs/darwin-i386-cc/asm_avx2/openssl-cl.gypi'],
|
|
}, 'target_arch=="ia32" and OS=="solaris"', {
|
|
'includes': ['config/archs/solaris-x86-gcc/asm_avx2/openssl-cl.gypi'],
|
|
}, 'target_arch=="ia32" and OS=="win"', {
|
|
'includes': ['config/archs/VC-WIN32/asm_avx2/openssl-cl.gypi'],
|
|
}, 'target_arch=="ia32"', {
|
|
# noasm linux-elf for other ia32 platforms
|
|
'includes': ['config/archs/linux-elf/asm_avx2/openssl-cl.gypi'],
|
|
}, 'target_arch=="x64" and OS=="freebsd"', {
|
|
'includes': ['config/archs/BSD-x86_64/asm_avx2/openssl-cl.gypi'],
|
|
}, 'target_arch=="x64" and OS=="mac"', {
|
|
'includes': ['config/archs/darwin64-x86_64-cc/asm_avx2/openssl-cl.gypi'],
|
|
}, 'target_arch=="arm64" and OS=="mac"', {
|
|
'includes': ['config/archs/darwin64-arm64-cc/asm_avx2/openssl-cl.gypi'],
|
|
}, 'target_arch=="x64" and OS=="solaris"', {
|
|
'includes': ['config/archs/solaris64-x86_64-gcc/asm_avx2/openssl-cl.gypi'],
|
|
}, 'target_arch=="x64" and OS=="win"', {
|
|
'includes': ['config/archs/VC-WIN64A/asm_avx2/openssl-cl.gypi'],
|
|
}, 'target_arch=="x64" and OS=="linux"', {
|
|
'includes': ['config/archs/linux-x86_64/asm_avx2/openssl-cl.gypi'],
|
|
}, {
|
|
# Other architectures don't use assembly
|
|
'includes': ['config/archs/linux-x86_64/asm_avx2/openssl-cl.gypi'],
|
|
}],
|
|
],
|
|
}
|