diff options
| author | Khem Raj <raj.khem@gmail.com> | 2025-05-03 21:33:01 -0700 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-05-04 23:18:21 -0700 |
| commit | 5f1e50c437d43ae63ea64df460bec5a7004ff75d (patch) | |
| tree | 46dc04ac757d0188026c80cfc4a5fbb8d2074ef0 /meta-python/recipes-devtools/python/python3-icu | |
| parent | c97562863f7d57d6e10275a7616a187b7602a44e (diff) | |
| download | meta-openembedded-5f1e50c437d43ae63ea64df460bec5a7004ff75d.tar.gz | |
python3-icu: Fix build with GCC-15
drop is_trivial check
Fixes
| In file included from bases.cpp:32:
| arg.h:856:37: error: static assertion failed
| 856 | static_assert(std::is_trivial<T>::value); \
| | ~~~~~~~~~~~~~~~~~~~~^~~~~
| arg.h:859:1: note: in expansion of macro '_IS_POD'
| 859 | _IS_POD(AnyPythonObject);
| | ^~~~~~~
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-icu')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-icu/0001-Remove-assert-checking-for-trivial-type.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-icu/0001-Remove-assert-checking-for-trivial-type.patch b/meta-python/recipes-devtools/python/python3-icu/0001-Remove-assert-checking-for-trivial-type.patch new file mode 100644 index 0000000000..4c75eb5f7b --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-icu/0001-Remove-assert-checking-for-trivial-type.patch | |||
| @@ -0,0 +1,26 @@ | |||
| 1 | From 3d58fb48bb1cef2177aab8e291167638993495f4 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Sat, 3 May 2025 21:27:34 -0700 | ||
| 4 | Subject: [PATCH] Remove assert checking for trivial type | ||
| 5 | |||
| 6 | This fails with GCC-15, is_trivial is deprecated in C++26 | ||
| 7 | |||
| 8 | Upstream-Status: Pending | ||
| 9 | |||
| 10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 11 | --- | ||
| 12 | arg.h | 1 - | ||
| 13 | 1 file changed, 1 deletion(-) | ||
| 14 | |||
| 15 | diff --git a/arg.h b/arg.h | ||
| 16 | index a493d11..6cb232d 100644 | ||
| 17 | --- a/arg.h | ||
| 18 | +++ b/arg.h | ||
| 19 | @@ -853,7 +853,6 @@ public: | ||
| 20 | }; | ||
| 21 | |||
| 22 | #define _IS_POD(T) \ | ||
| 23 | - static_assert(std::is_trivial<T>::value); \ | ||
| 24 | static_assert(std::is_standard_layout<T>::value) | ||
| 25 | |||
| 26 | _IS_POD(AnyPythonObject); | ||
