From 583199bf59cd92f40043f6179e79780fd52e2cb0 Mon Sep 17 00:00:00 2001 From: Theo Buehler Date: Sat, 12 Apr 2025 15:00:56 +0200 Subject: Add ChangeLog entry for loongarch64 + a review nit --- ChangeLog | 1 + tests/CMakeLists.txt | 4 ++-- 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: 4.1.0 - In development * Portable changes + - Added initial experimental support for loongarch64. - Fixed CMake builds on FreeBSD. - Fixed the --prefix option for cmake --install. - 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) include_directories(../crypto/arch/arm/) elseif(HOST_I386) include_directories(../crypto/arch/i386/) -elseif(HOST_MIPS64) - include_directories(../crypto/arch/mips64) elseif(HOST_LOONGARCH64) include_directories(../crypto/arch/loongarch64) +elseif(HOST_MIPS64) + include_directories(../crypto/arch/mips64) elseif(HOST_MIPS) # XXX - can this go away? the directory doesn't exist... elseif(HOST_POWERPC) -- cgit v1.2.3-55-g6feb