From: Antonios Christidis <[email protected]> Adding recipe for opencl-cts, v2024-08-08 is a pre-release version. I have tested it to work with opencl-headers version v2024.05.08 . This version is picked due to incompatibility issues with other versions of headers.
This is a backport from meta-openembedded, they rejected to move opencl-cts to scarthgap due to their LTS procedure. New packages do not get merged into LTS branches after 7 months of the branch creation. This recipe also comes with a patch. Within the cmake build system, the compiler -Werror flag is enabled. This turns all warnings into errors and doesn't allow the system to compile correctly. Change the system to ignore the 3 warning rules that show up when compiling. Signed-off-by: Antonios Christidis <[email protected]> --- v5: -backport patches from upstream without any changes v4: -merged the patch patch and recipe patch into one patch, this is it v3: - Changed from adress, it was wrong. v2: - Added explanation on why this patch is a backport from meta-openembedded .../files/0001-Ignore-Compiler-Warnings.patch | 45 +++++++++++++++++++ .../opencl/opencl-cts_2024.08.08.bb | 32 +++++++++++++ 2 files changed, 77 insertions(+) create mode 100644 meta-arago-test/recipes-graphics/opencl/files/0001-Ignore-Compiler-Warnings.patch create mode 100644 meta-arago-test/recipes-graphics/opencl/opencl-cts_2024.08.08.bb diff --git a/meta-arago-test/recipes-graphics/opencl/files/0001-Ignore-Compiler-Warnings.patch b/meta-arago-test/recipes-graphics/opencl/files/0001-Ignore-Compiler-Warnings.patch new file mode 100644 index 00000000..d46a2cf1 --- /dev/null +++ b/meta-arago-test/recipes-graphics/opencl/files/0001-Ignore-Compiler-Warnings.patch @@ -0,0 +1,45 @@ +From 082ce10dd191f036f5a6e1fb31134e9736ba3643 Mon Sep 17 00:00:00 2001 +From: Antonios Christidis <[email protected]> +Date: Fri, 17 Jan 2025 15:05:39 -0600 +Subject: [PATCH] Create CMake option ENABLE_WERROR + +This creates an option that can be toggled on or off when configuring the project. +By default, it's set to ON + +Upstream-Status: Submitted [opencl-cts github - expected in next release v2026] + +Signed-off-by: Antonios Christidis <[email protected]> +Signed-off-by: Khem Raj <[email protected]> + +--- + CMakeLists.txt | 4 +++- + 1 file changed, 3 insertions(+), 1 deletion(-) + +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -19,6 +19,16 @@ add_definitions(-DCL_USE_DEPRECATED_OPEN + add_definitions(-DCL_USE_DEPRECATED_OPENCL_1_0_APIS=1) + add_definitions(-DCL_NO_EXTENSION_PROTOTYPES) + ++option(ENABLE_WERROR "Enable warnings as errors" ON) ++ ++if(ENABLE_WERROR) ++ if(MSVC) ++ add_compile_options(/WX) ++ else() ++ add_compile_options(-Werror) ++ endif() ++endif() ++ + option(USE_CL_EXPERIMENTAL "Use Experimental definitions" OFF) + if(USE_CL_EXPERIMENTAL) + add_definitions(-DCL_EXPERIMENTAL) +@@ -99,7 +109,6 @@ if(CMAKE_COMPILER_IS_GNUCC OR "${CMAKE_C + add_cxx_flag_if_supported(-Wmisleading-indentation) + add_cxx_flag_if_supported(-Wunused-function) + add_cxx_flag_if_supported(-Wunused-variable) +- add_cxx_flag_if_supported(-Werror) + if(NOT CMAKE_BUILD_TYPE MATCHES "Release|RelWithDebInfo|MinSizeRel") + # Enable more warnings if not doing a release build. + add_cxx_flag_if_supported(-Wall) + diff --git a/meta-arago-test/recipes-graphics/opencl/opencl-cts_2024.08.08.bb b/meta-arago-test/recipes-graphics/opencl/opencl-cts_2024.08.08.bb new file mode 100644 index 00000000..791432a3 --- /dev/null +++ b/meta-arago-test/recipes-graphics/opencl/opencl-cts_2024.08.08.bb @@ -0,0 +1,32 @@ +SUMMARY = "OpenCL CTS" +DESCRIPTION = "OpenCL CTS test suite" +LICENSE = "Apache-2.0" +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=3b83ef96387f14655fc854ddc3c6bd57" + +inherit pkgconfig cmake + +DEPENDS += "opencl-headers opencl-icd-loader" +RDEPENDS:${PN} += "python3-core python3-io" + +S = "${WORKDIR}/git" + +SRC_URI = "git://github.com/KhronosGroup/OpenCL-CTS.git;protocol=https;branch=main;lfs=0 \ + file://0001-Ignore-Compiler-Warnings.patch" + +SRCREV = "a406b340913f622da089b00f284a597656c10239" + +EXTRA_OECMAKE:append = " -DENABLE_WERROR=OFF -DCL_INCLUDE_DIR=${STAGING_INCDIR} -DCL_LIB_DIR=${STAGING_LIBDIR} -DOPENCL_LIBRARIES=OpenCL" + +SECURITY_STRINGFORMAT:remove = "-Werror=format-security" + +do_install() { + install -d ${D}${bindir}/opencl_test_conformance + cp -r ${B}/test_conformance/* ${D}${bindir}/opencl_test_conformance + sed -i 's:/usr/bin/python:/usr/bin/python3:g' ${D}${bindir}/opencl_test_conformance/run_conformance.py + find "${D}${bindir}/opencl_test_conformance" -name cmake_install.cmake -type f -delete + find "${D}${bindir}/opencl_test_conformance" -name CMakeFiles -type d -exec rm -rf "{}" \; -depth +} + +COMPATIBLE_HOST:riscv64 = "null" +COMPATIBLE_HOST:riscv32 = "null" + -- 2.34.1 -=-=-=-=-=-=-=-=-=-=-=- Links: You receive all messages sent to this group. View/Reply Online (#15896): https://lists.yoctoproject.org/g/meta-arago/message/15896 Mute This Topic: https://lists.yoctoproject.org/mt/111318481/21656 Group Owner: [email protected] Unsubscribe: https://lists.yoctoproject.org/g/meta-arago/unsub [[email protected]] -=-=-=-=-=-=-=-=-=-=-=-
