aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorTheo Buehler <tb@openbsd.org>2025-04-12 15:02:41 +0200
committerTheo Buehler <tb@openbsd.org>2025-04-12 15:02:41 +0200
commit34480a7eba9b3af01bf5ccbd844dc749147c9341 (patch)
treeae7680622519077af36d2fa49696b8d120f35b69 /tests
parentf625098f8b64b917b239afd72d1317139bef1e3b (diff)
parent031c2f1722f9af10299de3d22ff3c1467d541241 (diff)
downloadportable-34480a7eba9b3af01bf5ccbd844dc749147c9341.tar.gz
portable-34480a7eba9b3af01bf5ccbd844dc749147c9341.tar.bz2
portable-34480a7eba9b3af01bf5ccbd844dc749147c9341.zip
Land #1146 - Basic longarch64 support
Diffstat (limited to 'tests')
-rw-r--r--tests/CMakeLists.txt2
-rw-r--r--tests/Makefile.am4
2 files changed, 6 insertions, 0 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 8d6fa9d..f38486c 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -30,6 +30,8 @@ elseif(HOST_I386)
30 include_directories(../crypto/arch/i386/) 30 include_directories(../crypto/arch/i386/)
31elseif(HOST_MIPS64) 31elseif(HOST_MIPS64)
32 include_directories(../crypto/arch/mips64) 32 include_directories(../crypto/arch/mips64)
33elseif(HOST_LOONGARCH64)
34 include_directories(../crypto/arch/loongarch64)
33elseif(HOST_MIPS) 35elseif(HOST_MIPS)
34 # XXX - can this go away? the directory doesn't exist... 36 # XXX - can this go away? the directory doesn't exist...
35elseif(HOST_POWERPC) 37elseif(HOST_POWERPC)
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 8153fc9..217f445 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -36,6 +36,10 @@ if HOST_I386
36AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/i386/ 36AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/i386/
37endif 37endif
38 38
39if HOST_LOONGARCH64
40AM_CPPFLAGS += -I$(top_srcdir)/crypto/arch/loongarch64/
41endif
42
39# XXX - do we still need this? 43# XXX - do we still need this?
40if HOST_MIPS 44if HOST_MIPS
41endif 45endif