diff mbox series

[meta-oe] apitrace: Fix build with gcc-15

Message ID 20250328062115.126982-1-thond2009@gmail.com
State Accepted
Headers show
Series [meta-oe] apitrace: Fix build with gcc-15 | expand

Commit Message

Nguyen Dat Tho March 28, 2025, 6:21 a.m. UTC
From: "tho3.nguyen" <tho3.nguyen@lge.com>

To fix errors:
In file included from TOPDIR/tmp/work/core2-64-oe-linux/apitrace/11.1+11.1+git/git/frametrim/ft_matrixstate.hpp:30,
                 from TOPDIR/tmp/work/core2-64-oe-linux/apitrace/11.1+11.1+git/git/frametrim/ft_matrixstate.cpp:28:
TOPDIR/tmp/work/core2-64-oe-linux/apitrace/11.1+11.1+git/git/frametrim/ft_dependecyobject.hpp:187:44: error: 'uint64_t' was not declared in this scope
  187 |     std::unordered_map<unsigned, std::pair<uint64_t, uint64_t>> m_buffer_mappings;
      |                                            ^~~~~~~~
...
TOPDIR/tmp/work/core2-64-oe-linux/apitrace/11.1+11.1+git/git/retrace/metric_writer.cpp:50:70: error: 'uint64_t' does not name a type
   50 |         case CNT_NUM_UINT64: std::cout << "\t" << *(reinterpret_cast<uint64_t*>(data)); break;
...

Signed-off-by: tho3.nguyen <tho3.nguyen@lge.com>
---
 .../0001-Explicit-header-stdint.patch         | 42 +++++++++++++++++++
 .../apitrace/apitrace_11.1.bb                 |  1 +
 2 files changed, 43 insertions(+)
 create mode 100644 meta-oe/recipes-devtools/apitrace/apitrace/0001-Explicit-header-stdint.patch

Comments

Khem Raj March 28, 2025, 6:36 a.m. UTC | #1
On Thu, Mar 27, 2025 at 11:21 PM Nguyen Dat Tho via
lists.openembedded.org <thond2009=gmail.com@lists.openembedded.org>
wrote:
>
> From: "tho3.nguyen" <tho3.nguyen@lge.com>
>
> To fix errors:
> In file included from TOPDIR/tmp/work/core2-64-oe-linux/apitrace/11.1+11.1+git/git/frametrim/ft_matrixstate.hpp:30,
>                  from TOPDIR/tmp/work/core2-64-oe-linux/apitrace/11.1+11.1+git/git/frametrim/ft_matrixstate.cpp:28:
> TOPDIR/tmp/work/core2-64-oe-linux/apitrace/11.1+11.1+git/git/frametrim/ft_dependecyobject.hpp:187:44: error: 'uint64_t' was not declared in this scope
>   187 |     std::unordered_map<unsigned, std::pair<uint64_t, uint64_t>> m_buffer_mappings;
>       |                                            ^~~~~~~~
> ...
> TOPDIR/tmp/work/core2-64-oe-linux/apitrace/11.1+11.1+git/git/retrace/metric_writer.cpp:50:70: error: 'uint64_t' does not name a type
>    50 |         case CNT_NUM_UINT64: std::cout << "\t" << *(reinterpret_cast<uint64_t*>(data)); break;
> ...
>
> Signed-off-by: tho3.nguyen <tho3.nguyen@lge.com>
> ---
>  .../0001-Explicit-header-stdint.patch         | 42 +++++++++++++++++++
>  .../apitrace/apitrace_11.1.bb                 |  1 +
>  2 files changed, 43 insertions(+)
>  create mode 100644 meta-oe/recipes-devtools/apitrace/apitrace/0001-Explicit-header-stdint.patch
>
> diff --git a/meta-oe/recipes-devtools/apitrace/apitrace/0001-Explicit-header-stdint.patch b/meta-oe/recipes-devtools/apitrace/apitrace/0001-Explicit-header-stdint.patch
> new file mode 100644
> index 0000000000..9ce6693061
> --- /dev/null
> +++ b/meta-oe/recipes-devtools/apitrace/apitrace/0001-Explicit-header-stdint.patch
> @@ -0,0 +1,42 @@
> +From 952bad1469ea747012bdc48c48993bd5f13eec04 Mon Sep 17 00:00:00 2001
> +From: Nicolas PARLANT <nicolas.parlant@parhuet.fr>
> +Date: Fri, 21 Mar 2025 05:02:23 +0000
> +Subject: [PATCH] Explicit header: stdint
> +
> +Fix building with GCC-15. It no longer includes it by default.
> +
> +Upstream-Status: Backport [https://github.com/apitrace/apitrace/commit/952bad1469ea747012bdc48c48993bd5f13eec04]
> +
> +Signed-off-by: Nicolas PARLANT <nicolas.parlant@parhuet.fr>
> +---
> + frametrim/ft_dependecyobject.hpp | 1 +
> + retrace/metric_writer.cpp        | 1 +
> + 2 files changed, 2 insertions(+)
> +
> +diff --git a/frametrim/ft_dependecyobject.hpp b/frametrim/ft_dependecyobject.hpp
> +index 2cd0b768..0f17b601 100644
> +--- a/frametrim/ft_dependecyobject.hpp
> ++++ b/frametrim/ft_dependecyobject.hpp
> +@@ -28,6 +28,7 @@
> + #pragma once
> +
> + #include "ft_tracecall.hpp"
> ++#include <stdint.h>

this should have been <cstdint> but since it's a backport, I won't
complain here.

> +
> + namespace frametrim {
> +
> +diff --git a/retrace/metric_writer.cpp b/retrace/metric_writer.cpp
> +index e923ed1d..4e4ce748 100644
> +--- a/retrace/metric_writer.cpp
> ++++ b/retrace/metric_writer.cpp
> +@@ -24,6 +24,7 @@
> +  **************************************************************************/
> +
> + #include <iostream>
> ++#include <stdint.h>
> +
> + #include "metric_writer.hpp"
> +
> +--
> +2.34.1
> +
> diff --git a/meta-oe/recipes-devtools/apitrace/apitrace_11.1.bb b/meta-oe/recipes-devtools/apitrace/apitrace_11.1.bb
> index d872c4dbb5..48ba7dbaea 100644
> --- a/meta-oe/recipes-devtools/apitrace/apitrace_11.1.bb
> +++ b/meta-oe/recipes-devtools/apitrace/apitrace_11.1.bb
> @@ -8,6 +8,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=aeb969185a143c3c25130bc2c3ef9a50 \
>  SRCREV = "9352fc02bba106fbbeef9e8452ef34643c0d0764"
>  PV .= "+11.1+git"
>  SRC_URI = "gitsm://github.com/${BPN}/${BPN}.git;branch=master;protocol=https \
> +           file://0001-Explicit-header-stdint.patch \
>            "
>
>  S = "${WORKDIR}/git"
> --
> 2.34.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#116344): https://lists.openembedded.org/g/openembedded-devel/message/116344
> Mute This Topic: https://lists.openembedded.org/mt/111950111/1997914
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
diff mbox series

Patch

diff --git a/meta-oe/recipes-devtools/apitrace/apitrace/0001-Explicit-header-stdint.patch b/meta-oe/recipes-devtools/apitrace/apitrace/0001-Explicit-header-stdint.patch
new file mode 100644
index 0000000000..9ce6693061
--- /dev/null
+++ b/meta-oe/recipes-devtools/apitrace/apitrace/0001-Explicit-header-stdint.patch
@@ -0,0 +1,42 @@ 
+From 952bad1469ea747012bdc48c48993bd5f13eec04 Mon Sep 17 00:00:00 2001
+From: Nicolas PARLANT <nicolas.parlant@parhuet.fr>
+Date: Fri, 21 Mar 2025 05:02:23 +0000
+Subject: [PATCH] Explicit header: stdint
+
+Fix building with GCC-15. It no longer includes it by default.
+
+Upstream-Status: Backport [https://github.com/apitrace/apitrace/commit/952bad1469ea747012bdc48c48993bd5f13eec04]
+
+Signed-off-by: Nicolas PARLANT <nicolas.parlant@parhuet.fr>
+---
+ frametrim/ft_dependecyobject.hpp | 1 +
+ retrace/metric_writer.cpp        | 1 +
+ 2 files changed, 2 insertions(+)
+
+diff --git a/frametrim/ft_dependecyobject.hpp b/frametrim/ft_dependecyobject.hpp
+index 2cd0b768..0f17b601 100644
+--- a/frametrim/ft_dependecyobject.hpp
++++ b/frametrim/ft_dependecyobject.hpp
+@@ -28,6 +28,7 @@
+ #pragma once
+ 
+ #include "ft_tracecall.hpp"
++#include <stdint.h>
+ 
+ namespace frametrim {
+ 
+diff --git a/retrace/metric_writer.cpp b/retrace/metric_writer.cpp
+index e923ed1d..4e4ce748 100644
+--- a/retrace/metric_writer.cpp
++++ b/retrace/metric_writer.cpp
+@@ -24,6 +24,7 @@
+  **************************************************************************/
+ 
+ #include <iostream>
++#include <stdint.h>
+ 
+ #include "metric_writer.hpp"
+ 
+-- 
+2.34.1
+
diff --git a/meta-oe/recipes-devtools/apitrace/apitrace_11.1.bb b/meta-oe/recipes-devtools/apitrace/apitrace_11.1.bb
index d872c4dbb5..48ba7dbaea 100644
--- a/meta-oe/recipes-devtools/apitrace/apitrace_11.1.bb
+++ b/meta-oe/recipes-devtools/apitrace/apitrace_11.1.bb
@@ -8,6 +8,7 @@  LIC_FILES_CHKSUM = "file://LICENSE;md5=aeb969185a143c3c25130bc2c3ef9a50 \
 SRCREV = "9352fc02bba106fbbeef9e8452ef34643c0d0764"
 PV .= "+11.1+git"
 SRC_URI = "gitsm://github.com/${BPN}/${BPN}.git;branch=master;protocol=https \
+           file://0001-Explicit-header-stdint.patch \
           "
 
 S = "${WORKDIR}/git"