diff options
| author | Khem Raj <raj.khem@gmail.com> | 2023-03-06 13:33:28 -0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2023-03-08 08:54:59 -0800 |
| commit | aeaa15a942ad9987ab2fe77bc20bd2ed47703dc0 (patch) | |
| tree | 7e1fbd2009564f5f4850939f5135d6eb85adede7 /dynamic-layers | |
| parent | a61880a0c0372f3341d711828230e7c862434499 (diff) | |
| download | meta-clang-aeaa15a942ad9987ab2fe77bc20bd2ed47703dc0.tar.gz | |
bcc: Fix tests build with clang16
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'dynamic-layers')
| -rw-r--r-- | dynamic-layers/openembedded-layer/recipes-devtools/bcc/bcc/0001-tests-cc-Use-c-14-standard.patch | 34 | ||||
| -rw-r--r-- | dynamic-layers/openembedded-layer/recipes-devtools/bcc/bcc_0.26.0.bb | 1 |
2 files changed, 35 insertions, 0 deletions
diff --git a/dynamic-layers/openembedded-layer/recipes-devtools/bcc/bcc/0001-tests-cc-Use-c-14-standard.patch b/dynamic-layers/openembedded-layer/recipes-devtools/bcc/bcc/0001-tests-cc-Use-c-14-standard.patch new file mode 100644 index 0000000..48754f6 --- /dev/null +++ b/dynamic-layers/openembedded-layer/recipes-devtools/bcc/bcc/0001-tests-cc-Use-c-14-standard.patch | |||
| @@ -0,0 +1,34 @@ | |||
| 1 | From 9f45e12ad4689ca2c41844b77c6d789d21509a13 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Mon, 6 Mar 2023 13:26:11 -0800 | ||
| 4 | Subject: [PATCH] tests/cc: Use c++14 standard | ||
| 5 | |||
| 6 | default c++ standard was bumped to c++17 when using clang16+ compiler | ||
| 7 | via 907b89cc9, however, tests which use check tool is not yet ported | ||
| 8 | to work with c++17 standard, therefore use c++14 on tests | ||
| 9 | |||
| 10 | Upstream-Status: Submitted [https://github.com/iovisor/bcc/pull/4506] | ||
| 11 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 12 | Cc: Hengqi Chen <chenhengqi@outlook.com> | ||
| 13 | --- | ||
| 14 | tests/cc/CMakeLists.txt | 4 ++++ | ||
| 15 | 1 file changed, 4 insertions(+) | ||
| 16 | |||
| 17 | diff --git a/tests/cc/CMakeLists.txt b/tests/cc/CMakeLists.txt | ||
| 18 | index bc870b07..b45f2369 100644 | ||
| 19 | --- a/tests/cc/CMakeLists.txt | ||
| 20 | +++ b/tests/cc/CMakeLists.txt | ||
| 21 | @@ -23,6 +23,10 @@ add_compile_options(-DCMAKE_CURRENT_BINARY_DIR="${CMAKE_CURRENT_BINARY_DIR}") | ||
| 22 | set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unused-result -fPIC") | ||
| 23 | set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-unused-result -fPIC") | ||
| 24 | |||
| 25 | +if(${LLVM_PACKAGE_VERSION} VERSION_EQUAL 16 OR ${LLVM_PACKAGE_VERSION} VERSION_GREATER 16) | ||
| 26 | +set(CMAKE_CXX_STANDARD 14) | ||
| 27 | +endif() | ||
| 28 | + | ||
| 29 | if(ENABLE_USDT) | ||
| 30 | set(TEST_LIBBCC_SOURCES | ||
| 31 | test_libbcc.cc | ||
| 32 | -- | ||
| 33 | 2.39.2 | ||
| 34 | |||
diff --git a/dynamic-layers/openembedded-layer/recipes-devtools/bcc/bcc_0.26.0.bb b/dynamic-layers/openembedded-layer/recipes-devtools/bcc/bcc_0.26.0.bb index 180b0f7..9bd6b4f 100644 --- a/dynamic-layers/openembedded-layer/recipes-devtools/bcc/bcc_0.26.0.bb +++ b/dynamic-layers/openembedded-layer/recipes-devtools/bcc/bcc_0.26.0.bb | |||
| @@ -28,6 +28,7 @@ SRC_URI = "gitsm://github.com/iovisor/bcc;branch=master;protocol=https \ | |||
| 28 | file://0001-tools-trace.py-Fix-failing-to-exit.patch \ | 28 | file://0001-tools-trace.py-Fix-failing-to-exit.patch \ |
| 29 | file://0001-CMakeLists.txt-override-the-PY_CMD_ESCAPED.patch \ | 29 | file://0001-CMakeLists.txt-override-the-PY_CMD_ESCAPED.patch \ |
| 30 | file://0001-Vendor-just-enough-extra-headers-to-allow-libbpf-to-.patch \ | 30 | file://0001-Vendor-just-enough-extra-headers-to-allow-libbpf-to-.patch \ |
| 31 | file://0001-tests-cc-Use-c-14-standard.patch \ | ||
| 31 | file://run-ptest \ | 32 | file://run-ptest \ |
| 32 | file://ptest_wrapper.sh \ | 33 | file://ptest_wrapper.sh \ |
| 33 | " | 34 | " |
