diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | tests/CMakeLists.txt | 4 |
2 files changed, 3 insertions, 2 deletions
@@ -31,6 +31,7 @@ LibreSSL Portable Release Notes: | |||
31 | 4.1.0 - In development | 31 | 4.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/) |
29 | elseif(HOST_I386) | 29 | elseif(HOST_I386) |
30 | include_directories(../crypto/arch/i386/) | 30 | include_directories(../crypto/arch/i386/) |
31 | elseif(HOST_MIPS64) | ||
32 | include_directories(../crypto/arch/mips64) | ||
33 | elseif(HOST_LOONGARCH64) | 31 | elseif(HOST_LOONGARCH64) |
34 | include_directories(../crypto/arch/loongarch64) | 32 | include_directories(../crypto/arch/loongarch64) |
33 | elseif(HOST_MIPS64) | ||
34 | include_directories(../crypto/arch/mips64) | ||
35 | elseif(HOST_MIPS) | 35 | elseif(HOST_MIPS) |
36 | # XXX - can this go away? the directory doesn't exist... | 36 | # XXX - can this go away? the directory doesn't exist... |
37 | elseif(HOST_POWERPC) | 37 | elseif(HOST_POWERPC) |