From 9c0301201f01cb6b18ba25b02433c14f235d6284 Mon Sep 17 00:00:00 2001 From: Mark Horvath Date: Tue, 1 Jul 2025 09:34:53 +0000 Subject: [PATCH 1/2] Add missing link library to C example --- examples/C/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/C/CMakeLists.txt b/examples/C/CMakeLists.txt index f77188f63..02730ab84 100644 --- a/examples/C/CMakeLists.txt +++ b/examples/C/CMakeLists.txt @@ -33,10 +33,12 @@ if(CMAKE_SYSTEM_NAME STREQUAL "Linux") -Wl,--whole-archive kleidicv -Wl,--no-whole-archive + m ) else() target_link_libraries( kleidicv-c-example kleidicv + m ) endif() -- GitLab From 2c5b1a99cbcefdb9b746110a6f33e1962e80a464 Mon Sep 17 00:00:00 2001 From: Mark Horvath Date: Tue, 1 Jul 2025 09:37:21 +0000 Subject: [PATCH 2/2] Add missing headers to test files --- test/api/test_remap.cpp | 1 + test/api/test_rotate.cpp | 4 +++- test/api/test_warp_perspective.cpp | 3 ++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/test/api/test_remap.cpp b/test/api/test_remap.cpp index 435a5ae48..c07706b88 100644 --- a/test/api/test_remap.cpp +++ b/test/api/test_remap.cpp @@ -4,6 +4,7 @@ #include +#include #include #include #include diff --git a/test/api/test_rotate.cpp b/test/api/test_rotate.cpp index 447270237..6e5cdea2b 100644 --- a/test/api/test_rotate.cpp +++ b/test/api/test_rotate.cpp @@ -1,9 +1,11 @@ -// SPDX-FileCopyrightText: 2024 Arm Limited and/or its affiliates +// SPDX-FileCopyrightText: 2024 - 2025 Arm Limited and/or its affiliates // // SPDX-License-Identifier: Apache-2.0 #include +#include + #include "framework/array.h" #include "framework/generator.h" #include "kleidicv/kleidicv.h" diff --git a/test/api/test_warp_perspective.cpp b/test/api/test_warp_perspective.cpp index b00991313..269104804 100644 --- a/test/api/test_warp_perspective.cpp +++ b/test/api/test_warp_perspective.cpp @@ -1,9 +1,10 @@ -// SPDX-FileCopyrightText: 2024 Arm Limited and/or its affiliates +// SPDX-FileCopyrightText: 2024 - 2025 Arm Limited and/or its affiliates // // SPDX-License-Identifier: Apache-2.0 #include +#include #include #include #include -- GitLab