diff options
| -rw-r--r-- | meta-oe/recipes-devtools/sqlite-orm/sqlite-orm/0001-fix-cstdint-error-with-gcc-15.0.1.patch | 52 | ||||
| -rw-r--r-- | meta-oe/recipes-devtools/sqlite-orm/sqlite-orm_1.5.bb | 5 |
2 files changed, 56 insertions, 1 deletions
diff --git a/meta-oe/recipes-devtools/sqlite-orm/sqlite-orm/0001-fix-cstdint-error-with-gcc-15.0.1.patch b/meta-oe/recipes-devtools/sqlite-orm/sqlite-orm/0001-fix-cstdint-error-with-gcc-15.0.1.patch new file mode 100644 index 0000000000..af884808f2 --- /dev/null +++ b/meta-oe/recipes-devtools/sqlite-orm/sqlite-orm/0001-fix-cstdint-error-with-gcc-15.0.1.patch | |||
| @@ -0,0 +1,52 @@ | |||
| 1 | From f011501e719e0042fc6ca29ac7b33e8a14562246 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: "mark.yang" <mark.yang@lge.com> | ||
| 3 | Date: Tue, 1 Apr 2025 19:45:01 +0900 | ||
| 4 | Subject: [PATCH] fix cstdint error with gcc-15.0.1 | ||
| 5 | |||
| 6 | * see more details: | ||
| 7 | http://errors.yoctoproject.org/Errors/Details/850148/ | ||
| 8 | TOPDIR/tmp/work/core2-64-oe-linux/sqlite-orm/1.5/git/examples/synchronous.cpp:7:5: error: 'uint16_t' does not name a type | ||
| 9 | 7 | uint16_t src_port; | ||
| 10 | | ^~~~~~~~ | ||
| 11 | TOPDIR/tmp/work/core2-64-oe-linux/sqlite-orm/1.5/git/examples/synchronous.cpp:3:1: note: 'uint16_t' is defined in header '<cstdint>'; this is probably fixable by adding '#include <cstdint>' | ||
| 12 | 2 | #include <sqlite_orm/sqlite_orm.h> | ||
| 13 | +++ |+#include <cstdint> | ||
| 14 | 3 | #include <string> | ||
| 15 | |||
| 16 | While this was backported from 6a96d1cec4(Explicitly included <cstdint> in examples and unit tests), | ||
| 17 | since it was a commit made in v1.9, only synchronous.cpp was modified as other files do not exist in the current version. | ||
| 18 | |||
| 19 | Signed-off-by: mark.yang <mark.yang@lge.com> | ||
| 20 | |||
| 21 | Upstream-Status: Backport [6a96d1c Explicitly included <cstdint> in examples and unit tests] | ||
| 22 | --- | ||
| 23 | examples/synchronous.cpp | 11 ++++++----- | ||
| 24 | 1 file changed, 6 insertions(+), 5 deletions(-) | ||
| 25 | |||
| 26 | diff --git a/examples/synchronous.cpp b/examples/synchronous.cpp | ||
| 27 | index d10da13d..b103b48c 100644 | ||
| 28 | --- a/examples/synchronous.cpp | ||
| 29 | +++ b/examples/synchronous.cpp | ||
| 30 | @@ -1,15 +1,16 @@ | ||
| 31 | |||
| 32 | #include <sqlite_orm/sqlite_orm.h> | ||
| 33 | +#include <cstdint> | ||
| 34 | #include <string> | ||
| 35 | |||
| 36 | struct Query { | ||
| 37 | std::string src_ip; | ||
| 38 | - uint16_t src_port; | ||
| 39 | - uint16_t txn_id; | ||
| 40 | - uint32_t tv_sec; | ||
| 41 | - uint32_t tv_usec; | ||
| 42 | + std::uint16_t src_port; | ||
| 43 | + std::uint16_t txn_id; | ||
| 44 | + std::uint32_t tv_sec; | ||
| 45 | + std::uint32_t tv_usec; | ||
| 46 | std::string name; | ||
| 47 | - uint16_t type; | ||
| 48 | + std::uint16_t type; | ||
| 49 | }; | ||
| 50 | |||
| 51 | int main(int, char **) { | ||
| 52 | |||
diff --git a/meta-oe/recipes-devtools/sqlite-orm/sqlite-orm_1.5.bb b/meta-oe/recipes-devtools/sqlite-orm/sqlite-orm_1.5.bb index db90bc589e..17c24d5abf 100644 --- a/meta-oe/recipes-devtools/sqlite-orm/sqlite-orm_1.5.bb +++ b/meta-oe/recipes-devtools/sqlite-orm/sqlite-orm_1.5.bb | |||
| @@ -8,7 +8,10 @@ inherit cmake | |||
| 8 | DEPENDS += "sqlite3" | 8 | DEPENDS += "sqlite3" |
| 9 | 9 | ||
| 10 | SRCREV = "e8a9e9416f421303f4b8970caab26dadf8bae98b" | 10 | SRCREV = "e8a9e9416f421303f4b8970caab26dadf8bae98b" |
| 11 | SRC_URI = "git://github.com/fnc12/sqlite_orm;protocol=https;branch=master" | 11 | SRC_URI = " \ |
| 12 | git://github.com/fnc12/sqlite_orm;protocol=https;branch=master \ | ||
| 13 | file://0001-fix-cstdint-error-with-gcc-15.0.1.patch \ | ||
| 14 | " | ||
| 12 | S = "${WORKDIR}/git" | 15 | S = "${WORKDIR}/git" |
| 13 | 16 | ||
| 14 | EXTRA_OECMAKE += "-DSqliteOrm_BuildTests=OFF -DLIB_INSTALL_DIR=${libdir} \ | 17 | EXTRA_OECMAKE += "-DSqliteOrm_BuildTests=OFF -DLIB_INSTALL_DIR=${libdir} \ |
