mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
779a243f86
V8 now resume supporting for mipsel/mips64el. This commit add linux64-mips64 platform dependent files in 'deps/openssl/config/archs/linux64-mips64', and update the corresponding gypi files and header files. Refs: https://groups.google.com/forum/#!topic/v8-dev/oXkv5OVCXyc PR-URL: https://github.com/nodejs/node/pull/27992 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Rod Vagg <rod@vagg.org> Reviewed-By: Sam Roberts <vieuxtech@gmail.com>
84 lines
3.2 KiB
Python
84 lines
3.2 KiB
Python
{
|
|
'conditions': [
|
|
['target_arch=="ppc" and OS=="aix"', {
|
|
'includes': ['config/archs/aix-gcc/asm/openssl.gypi'],
|
|
}, 'target_arch=="ppc" and OS=="linux"', {
|
|
'includes': ['config/archs/linux-ppc/asm/openssl.gypi'],
|
|
}, 'target_arch=="ppc64" and OS=="aix"', {
|
|
'includes': ['config/archs/aix64-gcc/asm/openssl.gypi'],
|
|
}, 'target_arch=="ppc64" and OS=="linux" and node_byteorder =="little"', {
|
|
'includes': ['config/archs/linux-ppc64le/asm/openssl.gypi'],
|
|
}, 'target_arch=="ppc64" and OS=="linux"', {
|
|
'includes': ['config/archs/linux-ppc64/asm/openssl.gypi'],
|
|
}, 'target_arch=="s390" and OS=="linux"', {
|
|
'includes': ['config/archs/linux32-s390x/asm/openssl.gypi'],
|
|
}, 'target_arch=="s390x" and OS=="linux"', {
|
|
'includes': ['config/archs/linux64-s390x/asm/openssl.gypi'],
|
|
}, 'target_arch=="arm" and OS=="linux"', {
|
|
'includes': ['config/archs/linux-armv4/asm/openssl.gypi'],
|
|
}, 'target_arch=="arm64" and OS=="linux"', {
|
|
'includes': ['config/archs/linux-aarch64/asm/openssl.gypi'],
|
|
}, 'target_arch=="ia32" and OS=="linux"', {
|
|
'includes': ['config/archs/linux-elf/asm/openssl.gypi'],
|
|
}, 'target_arch=="ia32" and OS=="mac"', {
|
|
'includes': ['config/archs/darwin-i386-cc/asm/openssl.gypi'],
|
|
}, 'target_arch=="ia32" and OS=="solaris"', {
|
|
'includes': ['config/archs/solaris-x86-gcc/asm/openssl.gypi'],
|
|
}, 'target_arch=="ia32" and OS=="win"', {
|
|
'includes': ['config/archs/VC-WIN32/asm/openssl.gypi'],
|
|
'rules': [
|
|
{
|
|
'rule_name': 'Assemble',
|
|
'extension': 'asm',
|
|
'inputs': [],
|
|
'outputs': [
|
|
'<(INTERMEDIATE_DIR)/<(RULE_INPUT_ROOT).obj',
|
|
],
|
|
'action': [
|
|
'nasm.exe',
|
|
'-f win32',
|
|
'-o', '<(INTERMEDIATE_DIR)/<(RULE_INPUT_ROOT).obj',
|
|
'<(RULE_INPUT_PATH)',
|
|
],
|
|
}
|
|
],
|
|
}, 'target_arch=="ia32"', {
|
|
'includes': ['config/archs/linux-elf/asm/openssl.gypi'],
|
|
}, 'target_arch=="x64" and OS=="freebsd"', {
|
|
'includes': ['config/archs/BSD-x86_64/asm/openssl.gypi'],
|
|
}, 'target_arch=="x64" and OS=="mac"', {
|
|
'includes': ['config/archs/darwin64-x86_64-cc/asm/openssl.gypi'],
|
|
}, 'target_arch=="x64" and OS=="solaris"', {
|
|
'includes': ['config/archs/solaris64-x86_64-gcc/asm/openssl.gypi'],
|
|
}, 'target_arch=="x64" and OS=="win"', {
|
|
'includes': ['config/archs/VC-WIN64A/asm/openssl.gypi'],
|
|
'rules': [
|
|
{
|
|
'rule_name': 'Assemble',
|
|
'extension': 'asm',
|
|
'inputs': [],
|
|
'outputs': [
|
|
'<(INTERMEDIATE_DIR)/<(RULE_INPUT_ROOT).obj',
|
|
],
|
|
'action': [
|
|
'nasm.exe',
|
|
'-f win64',
|
|
'-DNEAR',
|
|
'-Ox',
|
|
'-g',
|
|
'-o', '<(INTERMEDIATE_DIR)/<(RULE_INPUT_ROOT).obj',
|
|
'<(RULE_INPUT_PATH)',
|
|
],
|
|
}
|
|
],
|
|
}, 'target_arch=="x64" and OS=="linux"', {
|
|
'includes': ['config/archs/linux-x86_64/asm/openssl.gypi'],
|
|
}, 'target_arch=="mips64el" and OS=="linux"', {
|
|
'includes': ['config/archs/linux64-mips64/asm/openssl.gypi'],
|
|
}, {
|
|
# Other architectures don't use assembly
|
|
'includes': ['config/archs/linux-x86_64/asm/openssl.gypi'],
|
|
}],
|
|
],
|
|
}
|