From 031c2f1722f9af10299de3d22ff3c1467d541241 Mon Sep 17 00:00:00 2001 From: "Ivan A. Melnikov" Date: Thu, 10 Apr 2025 17:09:19 +0400 Subject: Basic loongarch64 support Just wire things up to make the project buildable on LoongArch64. opensslconf.h is taken form riscv64 folder as is, and is the same as on some other 64 bit architectures. Refs: https://github.com/libressl/portable/issues/1123 Signed-off-by: Ivan A. Melnikov --- include/openssl/Makefile.am.tpl | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/openssl') diff --git a/include/openssl/Makefile.am.tpl b/include/openssl/Makefile.am.tpl index 303d0b9..4bbbd60 100644 --- a/include/openssl/Makefile.am.tpl +++ b/include/openssl/Makefile.am.tpl @@ -17,6 +17,9 @@ endif if HOST_I386 -cp $(top_srcdir)/include/arch/i386/opensslconf.h opensslconf.h endif +if HOST_LOONGARCH64 + -cp $(top_srcdir)/include/arch/loongarch64/opensslconf.h opensslconf.h +endif if HOST_MIPS -cp $(top_srcdir)/include/arch/mips/opensslconf.h opensslconf.h endif -- cgit v1.2.3-55-g6feb