From 769336ab8c31bddd0d39d70bc125e9637d5ee91d Mon Sep 17 00:00:00 2001 From: Lu Yahan Date: Sat, 16 Oct 2021 10:33:09 +0800 Subject: [PATCH] deps: add riscv64 config into openssl gypi PR-URL: https://github.com/nodejs/node/pull/40473 Reviewed-By: Daniel Bevenius Reviewed-By: Richard Lau --- deps/openssl/openssl-cl_no_asm.gypi | 2 ++ deps/openssl/openssl_no_asm.gypi | 2 ++ 2 files changed, 4 insertions(+) diff --git a/deps/openssl/openssl-cl_no_asm.gypi b/deps/openssl/openssl-cl_no_asm.gypi index 767b7738daed12..6e12fbe4d8fa0b 100644 --- a/deps/openssl/openssl-cl_no_asm.gypi +++ b/deps/openssl/openssl-cl_no_asm.gypi @@ -45,6 +45,8 @@ 'includes': ['config/archs/linux-x86_64/no-asm/openssl-cl.gypi'], }, 'target_arch=="mips64el" and OS=="linux"', { 'includes': ['config/archs/linux64-mips64/no-asm/openssl-cl.gypi'], + }, 'target_arch=="riscv64" and OS=="linux"', { + 'includes': ['config/archs/linux64-riscv64/no-asm/openssl-cl.gypi'], }, { # Other architectures don't use assembly 'includes': ['config/archs/linux-x86_64/no-asm/openssl-cl.gypi'], diff --git a/deps/openssl/openssl_no_asm.gypi b/deps/openssl/openssl_no_asm.gypi index de4820d6fe40b6..5feddbae8fb7a6 100644 --- a/deps/openssl/openssl_no_asm.gypi +++ b/deps/openssl/openssl_no_asm.gypi @@ -46,6 +46,8 @@ 'includes': ['config/archs/linux-x86_64/no-asm/openssl.gypi'], }, 'target_arch=="mips64el" and OS=="linux"', { 'includes': ['config/archs/linux64-mips64/no-asm/openssl.gypi'], + }, 'target_arch=="riscv64" and OS=="linux"', { + 'includes': ['config/archs/linux64-riscv64/no-asm/openssl.gypi'], }, { # Other architectures don't use assembly 'includes': ['config/archs/linux-x86_64/no-asm/openssl.gypi'],