aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo Buehler <tb@openbsd.org>2025-04-12 15:00:56 +0200
committerTheo Buehler <tb@openbsd.org>2025-04-12 15:03:18 +0200
commit583199bf59cd92f40043f6179e79780fd52e2cb0 (patch)
treeb6326ad5d24b2cace00dffffbc69918e3229d507
parent34480a7eba9b3af01bf5ccbd844dc749147c9341 (diff)
downloadportable-583199bf59cd92f40043f6179e79780fd52e2cb0.tar.gz
portable-583199bf59cd92f40043f6179e79780fd52e2cb0.tar.bz2
portable-583199bf59cd92f40043f6179e79780fd52e2cb0.zip
Add ChangeLog entry for loongarch64 + a review nit
-rw-r--r--ChangeLog1
-rw-r--r--tests/CMakeLists.txt4
2 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 0504395..d9c4421 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -31,6 +31,7 @@ LibreSSL Portable Release Notes:
314.1.0 - In development 314.1.0 - In development
32 32
33 * Portable changes 33 * Portable changes
34 - Added initial experimental support for loongarch64.
34 - Fixed CMake builds on FreeBSD. 35 - Fixed CMake builds on FreeBSD.
35 - Fixed the --prefix option for cmake --install. 36 - Fixed the --prefix option for cmake --install.
36 - Fixed tests for MinGW due to missing sh(1). 37 - Fixed tests for MinGW due to missing sh(1).
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index f38486c..72e36d4 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -28,10 +28,10 @@ elseif(HOST_ARM)
28 include_directories(../crypto/arch/arm/) 28 include_directories(../crypto/arch/arm/)
29elseif(HOST_I386) 29elseif(HOST_I386)
30 include_directories(../crypto/arch/i386/) 30 include_directories(../crypto/arch/i386/)
31elseif(HOST_MIPS64)
32 include_directories(../crypto/arch/mips64)
33elseif(HOST_LOONGARCH64) 31elseif(HOST_LOONGARCH64)
34 include_directories(../crypto/arch/loongarch64) 32 include_directories(../crypto/arch/loongarch64)
33elseif(HOST_MIPS64)
34 include_directories(../crypto/arch/mips64)
35elseif(HOST_MIPS) 35elseif(HOST_MIPS)
36 # XXX - can this go away? the directory doesn't exist... 36 # XXX - can this go away? the directory doesn't exist...
37elseif(HOST_POWERPC) 37elseif(HOST_POWERPC)