meta-arm.lists.yoctoproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] gator-daemon: Do not specify header files in GATORD_CXX_SRC_FILES
@ 2021-06-26 21:28 Khem Raj
  2021-06-27 19:08 ` [meta-arm] " Denys Dmytriyenko
  0 siblings, 1 reply; 5+ messages in thread
From: Khem Raj @ 2021-06-26 21:28 UTC (permalink / raw)
  To: meta-arm; +Cc: Khem Raj, Jon Mason, Ross Burton

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Cc: Jon Mason <jon.mason@arm.com>
Cc: Ross Burton <ross.burton@arm.com>
---
 ...e-xml-PmuXMLParser.h-header-from-GAT.patch | 31 +++++++++++++++++++
 .../gator-daemon/gator-daemon_7.7.0.bb        |  4 ++-
 2 files changed, 34 insertions(+), 1 deletion(-)
 create mode 100644 meta-arm/recipes-devtools/gator-daemon/gator-daemon/0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch

diff --git a/meta-arm/recipes-devtools/gator-daemon/gator-daemon/0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch b/meta-arm/recipes-devtools/gator-daemon/gator-daemon/0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch
new file mode 100644
index 0000000..fc39f4e
--- /dev/null
+++ b/meta-arm/recipes-devtools/gator-daemon/gator-daemon/0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch
@@ -0,0 +1,31 @@
+From 6f62c77f0a51de17b7f81f225ef483ed8214640e Mon Sep 17 00:00:00 2001
+From: Khem Raj <raj.khem@gmail.com>
+Date: Sat, 26 Jun 2021 14:19:10 -0700
+Subject: [PATCH] Sources.mk: Remove xml/PmuXMLParser.h header from
+ GATORD_CXX_SRC_FILES
+
+This otherwise appears in final linker cmdline and clang is not happy
+since it sees this as an output file along with the real output file
+specified with -o and bails out
+
+| clang-13: error: cannot specify -o when generating multiple output files
+
+Signed-off-by: Khem Raj <raj.khem@gmail.com>
+---
+ daemon/Sources.mk | 3 +--
+ 1 file changed, 1 insertion(+), 2 deletions(-)
+
+diff --git a/daemon/Sources.mk b/daemon/Sources.mk
+index 60d15ef..3e679f5 100644
+--- a/daemon/Sources.mk
++++ b/daemon/Sources.mk
+@@ -147,5 +147,4 @@ GATORD_CXX_SRC_FILES := \
+     xml/EventsXMLProcessor.cpp \
+     xml/MxmlUtils.cpp \
+     xml/PmuXML.cpp \
+-    xml/PmuXMLParser.cpp \
+-    xml/PmuXMLParser.h
++    xml/PmuXMLParser.cpp
+-- 
+2.32.0
+
diff --git a/meta-arm/recipes-devtools/gator-daemon/gator-daemon_7.7.0.bb b/meta-arm/recipes-devtools/gator-daemon/gator-daemon_7.7.0.bb
index 61b1731..b3ba437 100644
--- a/meta-arm/recipes-devtools/gator-daemon/gator-daemon_7.7.0.bb
+++ b/meta-arm/recipes-devtools/gator-daemon/gator-daemon_7.7.0.bb
@@ -16,7 +16,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
                    "
 
 SRCREV = "9d8d75fa08352470c51abc23fe3b314879bd8b78"
-SRC_URI = "git://github.com/ARM-software/gator.git;protocol=http;branch=main"
+SRC_URI = "git://github.com/ARM-software/gator.git;protocol=http;branch=main \
+           file://0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch;striplevel=2 \
+          "
 
 S = "${WORKDIR}/git/daemon"
 
-- 
2.32.0


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [meta-arm] [PATCH] gator-daemon: Do not specify header files in GATORD_CXX_SRC_FILES
  2021-06-26 21:28 [PATCH] gator-daemon: Do not specify header files in GATORD_CXX_SRC_FILES Khem Raj
@ 2021-06-27 19:08 ` Denys Dmytriyenko
  2021-06-27 19:30   ` Khem Raj
  0 siblings, 1 reply; 5+ messages in thread
From: Denys Dmytriyenko @ 2021-06-27 19:08 UTC (permalink / raw)
  To: Khem Raj; +Cc: meta-arm, Jon Mason, Ross Burton

On Sat, Jun 26, 2021 at 02:28:06PM -0700, Khem Raj wrote:
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> Cc: Jon Mason <jon.mason@arm.com>
> Cc: Ross Burton <ross.burton@arm.com>
> ---
>  ...e-xml-PmuXMLParser.h-header-from-GAT.patch | 31 +++++++++++++++++++
>  .../gator-daemon/gator-daemon_7.7.0.bb        |  4 ++-
>  2 files changed, 34 insertions(+), 1 deletion(-)
>  create mode 100644 meta-arm/recipes-devtools/gator-daemon/gator-daemon/0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch
> 
> diff --git a/meta-arm/recipes-devtools/gator-daemon/gator-daemon/0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch b/meta-arm/recipes-devtools/gator-daemon/gator-daemon/0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch
> new file mode 100644
> index 0000000..fc39f4e
> --- /dev/null
> +++ b/meta-arm/recipes-devtools/gator-daemon/gator-daemon/0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch
> @@ -0,0 +1,31 @@
> +From 6f62c77f0a51de17b7f81f225ef483ed8214640e Mon Sep 17 00:00:00 2001
> +From: Khem Raj <raj.khem@gmail.com>
> +Date: Sat, 26 Jun 2021 14:19:10 -0700
> +Subject: [PATCH] Sources.mk: Remove xml/PmuXMLParser.h header from
> + GATORD_CXX_SRC_FILES
> +
> +This otherwise appears in final linker cmdline and clang is not happy
> +since it sees this as an output file along with the real output file
> +specified with -o and bails out
> +
> +| clang-13: error: cannot specify -o when generating multiple output files
> +

Upstream-Status?


> +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> +---
> + daemon/Sources.mk | 3 +--
> + 1 file changed, 1 insertion(+), 2 deletions(-)
> +
> +diff --git a/daemon/Sources.mk b/daemon/Sources.mk
> +index 60d15ef..3e679f5 100644
> +--- a/daemon/Sources.mk
> ++++ b/daemon/Sources.mk
> +@@ -147,5 +147,4 @@ GATORD_CXX_SRC_FILES := \
> +     xml/EventsXMLProcessor.cpp \
> +     xml/MxmlUtils.cpp \
> +     xml/PmuXML.cpp \
> +-    xml/PmuXMLParser.cpp \
> +-    xml/PmuXMLParser.h
> ++    xml/PmuXMLParser.cpp
> +-- 
> +2.32.0
> +
> diff --git a/meta-arm/recipes-devtools/gator-daemon/gator-daemon_7.7.0.bb b/meta-arm/recipes-devtools/gator-daemon/gator-daemon_7.7.0.bb
> index 61b1731..b3ba437 100644
> --- a/meta-arm/recipes-devtools/gator-daemon/gator-daemon_7.7.0.bb
> +++ b/meta-arm/recipes-devtools/gator-daemon/gator-daemon_7.7.0.bb
> @@ -16,7 +16,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
>                     "
>  
>  SRCREV = "9d8d75fa08352470c51abc23fe3b314879bd8b78"
> -SRC_URI = "git://github.com/ARM-software/gator.git;protocol=http;branch=main"
> +SRC_URI = "git://github.com/ARM-software/gator.git;protocol=http;branch=main \
> +           file://0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch;striplevel=2 \
> +          "
>  
>  S = "${WORKDIR}/git/daemon"
>  
> -- 
> 2.32.0
> 

-- 
Regards,
Denys Dmytriyenko <denis@denix.org>
PGP: 0x420902729A92C964 - https://denix.org/0x420902729A92C964
Fingerprint: 25FC E4A5 8A72 2F69 1186  6D76 4209 0272 9A92 C964

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [meta-arm] [PATCH] gator-daemon: Do not specify header files in GATORD_CXX_SRC_FILES
  2021-06-27 19:08 ` [meta-arm] " Denys Dmytriyenko
@ 2021-06-27 19:30   ` Khem Raj
  2021-06-28 11:11     ` Ross Burton
  0 siblings, 1 reply; 5+ messages in thread
From: Khem Raj @ 2021-06-27 19:30 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: Jon Mason, Ross Burton, meta-arm

[-- Attachment #1: Type: text/plain, Size: 3373 bytes --]

On Sun, Jun 27, 2021 at 12:08 PM Denys Dmytriyenko <denis@denix.org> wrote:

> On Sat, Jun 26, 2021 at 02:28:06PM -0700, Khem Raj wrote:
> > Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > Cc: Jon Mason <jon.mason@arm.com>
> > Cc: Ross Burton <ross.burton@arm.com>
> > ---
> >  ...e-xml-PmuXMLParser.h-header-from-GAT.patch | 31 +++++++++++++++++++
> >  .../gator-daemon/gator-daemon_7.7.0.bb        |  4 ++-
> >  2 files changed, 34 insertions(+), 1 deletion(-)
> >  create mode 100644
> meta-arm/recipes-devtools/gator-daemon/gator-daemon/0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch
> >
> > diff --git
> a/meta-arm/recipes-devtools/gator-daemon/gator-daemon/0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch
> b/meta-arm/recipes-devtools/gator-daemon/gator-daemon/0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch
> > new file mode 100644
> > index 0000000..fc39f4e
> > --- /dev/null
> > +++
> b/meta-arm/recipes-devtools/gator-daemon/gator-daemon/0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch
> > @@ -0,0 +1,31 @@
> > +From 6f62c77f0a51de17b7f81f225ef483ed8214640e Mon Sep 17 00:00:00 2001
> > +From: Khem Raj <raj.khem@gmail.com>
> > +Date: Sat, 26 Jun 2021 14:19:10 -0700
> > +Subject: [PATCH] Sources.mk: Remove xml/PmuXMLParser.h header from
> > + GATORD_CXX_SRC_FILES
> > +
> > +This otherwise appears in final linker cmdline and clang is not happy
> > +since it sees this as an output file along with the real output file
> > +specified with -o and bails out
> > +
> > +| clang-13: error: cannot specify -o when generating multiple output
> files
> > +
>
> Upstream-Status?


Pending


>
>
> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> > +---
> > + daemon/Sources.mk | 3 +--
> > + 1 file changed, 1 insertion(+), 2 deletions(-)
> > +
> > +diff --git a/daemon/Sources.mk b/daemon/Sources.mk
> > +index 60d15ef..3e679f5 100644
> > +--- a/daemon/Sources.mk
> > ++++ b/daemon/Sources.mk
> > +@@ -147,5 +147,4 @@ GATORD_CXX_SRC_FILES := \
> > +     xml/EventsXMLProcessor.cpp \
> > +     xml/MxmlUtils.cpp \
> > +     xml/PmuXML.cpp \
> > +-    xml/PmuXMLParser.cpp \
> > +-    xml/PmuXMLParser.h
> > ++    xml/PmuXMLParser.cpp
> > +--
> > +2.32.0
> > +
> > diff --git a/meta-arm/recipes-devtools/gator-daemon/
> gator-daemon_7.7.0.bb b/meta-arm/recipes-devtools/gator-daemon/
> gator-daemon_7.7.0.bb
> > index 61b1731..b3ba437 100644
> > --- a/meta-arm/recipes-devtools/gator-daemon/gator-daemon_7.7.0.bb
> > +++ b/meta-arm/recipes-devtools/gator-daemon/gator-daemon_7.7.0.bb
> > @@ -16,7 +16,9 @@ LIC_FILES_CHKSUM =
> "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
> >                     "
> >
> >  SRCREV = "9d8d75fa08352470c51abc23fe3b314879bd8b78"
> > -SRC_URI = "git://
> github.com/ARM-software/gator.git;protocol=http;branch=main"
> > +SRC_URI = "git://
> github.com/ARM-software/gator.git;protocol=http;branch=main \
> > +
>  file://0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch;striplevel=2
> \
> > +          "
> >
> >  S = "${WORKDIR}/git/daemon"
> >
> > --
> > 2.32.0
> >
>
> --
> Regards,
> Denys Dmytriyenko <denis@denix.org>
> PGP: 0x420902729A92C964 - https://denix.org/0x420902729A92C964
> Fingerprint: 25FC E4A5 8A72 2F69 1186  6D76 4209 0272 9A92 C964
>

[-- Attachment #2: Type: text/html, Size: 5312 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [meta-arm] [PATCH] gator-daemon: Do not specify header files in GATORD_CXX_SRC_FILES
  2021-06-27 19:30   ` Khem Raj
@ 2021-06-28 11:11     ` Ross Burton
  2021-06-28 11:20       ` Ross Burton
  0 siblings, 1 reply; 5+ messages in thread
From: Ross Burton @ 2021-06-28 11:11 UTC (permalink / raw)
  To: Khem Raj; +Cc: Denys Dmytriyenko, Jon Mason, Ross Burton, meta-arm

It makes me sad when we carry Pending patches for stuff that we own,
so I send the pull request:

https://github.com/ARM-software/gator/pull/27

Please re-send with at least Submitted, unless that gets merged before
you wake up. :)

Ross

On Sun, 27 Jun 2021 at 20:30, Khem Raj <raj.khem@gmail.com> wrote:
>
>
>
> On Sun, Jun 27, 2021 at 12:08 PM Denys Dmytriyenko <denis@denix.org> wrote:
>>
>> On Sat, Jun 26, 2021 at 02:28:06PM -0700, Khem Raj wrote:
>> > Signed-off-by: Khem Raj <raj.khem@gmail.com>
>> > Cc: Jon Mason <jon.mason@arm.com>
>> > Cc: Ross Burton <ross.burton@arm.com>
>> > ---
>> >  ...e-xml-PmuXMLParser.h-header-from-GAT.patch | 31 +++++++++++++++++++
>> >  .../gator-daemon/gator-daemon_7.7.0.bb        |  4 ++-
>> >  2 files changed, 34 insertions(+), 1 deletion(-)
>> >  create mode 100644 meta-arm/recipes-devtools/gator-daemon/gator-daemon/0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch
>> >
>> > diff --git a/meta-arm/recipes-devtools/gator-daemon/gator-daemon/0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch b/meta-arm/recipes-devtools/gator-daemon/gator-daemon/0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch
>> > new file mode 100644
>> > index 0000000..fc39f4e
>> > --- /dev/null
>> > +++ b/meta-arm/recipes-devtools/gator-daemon/gator-daemon/0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch
>> > @@ -0,0 +1,31 @@
>> > +From 6f62c77f0a51de17b7f81f225ef483ed8214640e Mon Sep 17 00:00:00 2001
>> > +From: Khem Raj <raj.khem@gmail.com>
>> > +Date: Sat, 26 Jun 2021 14:19:10 -0700
>> > +Subject: [PATCH] Sources.mk: Remove xml/PmuXMLParser.h header from
>> > + GATORD_CXX_SRC_FILES
>> > +
>> > +This otherwise appears in final linker cmdline and clang is not happy
>> > +since it sees this as an output file along with the real output file
>> > +specified with -o and bails out
>> > +
>> > +| clang-13: error: cannot specify -o when generating multiple output files
>> > +
>>
>> Upstream-Status?
>
>
> Pending
>
>>
>>
>>
>> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
>> > +---
>> > + daemon/Sources.mk | 3 +--
>> > + 1 file changed, 1 insertion(+), 2 deletions(-)
>> > +
>> > +diff --git a/daemon/Sources.mk b/daemon/Sources.mk
>> > +index 60d15ef..3e679f5 100644
>> > +--- a/daemon/Sources.mk
>> > ++++ b/daemon/Sources.mk
>> > +@@ -147,5 +147,4 @@ GATORD_CXX_SRC_FILES := \
>> > +     xml/EventsXMLProcessor.cpp \
>> > +     xml/MxmlUtils.cpp \
>> > +     xml/PmuXML.cpp \
>> > +-    xml/PmuXMLParser.cpp \
>> > +-    xml/PmuXMLParser.h
>> > ++    xml/PmuXMLParser.cpp
>> > +--
>> > +2.32.0
>> > +
>> > diff --git a/meta-arm/recipes-devtools/gator-daemon/gator-daemon_7.7.0.bb b/meta-arm/recipes-devtools/gator-daemon/gator-daemon_7.7.0.bb
>> > index 61b1731..b3ba437 100644
>> > --- a/meta-arm/recipes-devtools/gator-daemon/gator-daemon_7.7.0.bb
>> > +++ b/meta-arm/recipes-devtools/gator-daemon/gator-daemon_7.7.0.bb
>> > @@ -16,7 +16,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
>> >                     "
>> >
>> >  SRCREV = "9d8d75fa08352470c51abc23fe3b314879bd8b78"
>> > -SRC_URI = "git://github.com/ARM-software/gator.git;protocol=http;branch=main"
>> > +SRC_URI = "git://github.com/ARM-software/gator.git;protocol=http;branch=main \
>> > +           file://0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch;striplevel=2 \
>> > +          "
>> >
>> >  S = "${WORKDIR}/git/daemon"
>> >
>> > --
>> > 2.32.0
>> >
>>
>> --
>> Regards,
>> Denys Dmytriyenko <denis@denix.org>
>> PGP: 0x420902729A92C964 - https://denix.org/0x420902729A92C964
>> Fingerprint: 25FC E4A5 8A72 2F69 1186  6D76 4209 0272 9A92 C964
>
>
> 
>

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [meta-arm] [PATCH] gator-daemon: Do not specify header files in GATORD_CXX_SRC_FILES
  2021-06-28 11:11     ` Ross Burton
@ 2021-06-28 11:20       ` Ross Burton
  0 siblings, 0 replies; 5+ messages in thread
From: Ross Burton @ 2021-06-28 11:20 UTC (permalink / raw)
  To: Khem Raj; +Cc: Denys Dmytriyenko, Jon Mason, Ross Burton, meta-arm

Resend with Backport please :)

Ross

On Mon, 28 Jun 2021 at 12:11, Ross Burton <ross@burtonini.com> wrote:
>
> It makes me sad when we carry Pending patches for stuff that we own,
> so I send the pull request:
>
> https://github.com/ARM-software/gator/pull/27
>
> Please re-send with at least Submitted, unless that gets merged before
> you wake up. :)
>
> Ross
>
> On Sun, 27 Jun 2021 at 20:30, Khem Raj <raj.khem@gmail.com> wrote:
> >
> >
> >
> > On Sun, Jun 27, 2021 at 12:08 PM Denys Dmytriyenko <denis@denix.org> wrote:
> >>
> >> On Sat, Jun 26, 2021 at 02:28:06PM -0700, Khem Raj wrote:
> >> > Signed-off-by: Khem Raj <raj.khem@gmail.com>
> >> > Cc: Jon Mason <jon.mason@arm.com>
> >> > Cc: Ross Burton <ross.burton@arm.com>
> >> > ---
> >> >  ...e-xml-PmuXMLParser.h-header-from-GAT.patch | 31 +++++++++++++++++++
> >> >  .../gator-daemon/gator-daemon_7.7.0.bb        |  4 ++-
> >> >  2 files changed, 34 insertions(+), 1 deletion(-)
> >> >  create mode 100644 meta-arm/recipes-devtools/gator-daemon/gator-daemon/0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch
> >> >
> >> > diff --git a/meta-arm/recipes-devtools/gator-daemon/gator-daemon/0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch b/meta-arm/recipes-devtools/gator-daemon/gator-daemon/0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch
> >> > new file mode 100644
> >> > index 0000000..fc39f4e
> >> > --- /dev/null
> >> > +++ b/meta-arm/recipes-devtools/gator-daemon/gator-daemon/0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch
> >> > @@ -0,0 +1,31 @@
> >> > +From 6f62c77f0a51de17b7f81f225ef483ed8214640e Mon Sep 17 00:00:00 2001
> >> > +From: Khem Raj <raj.khem@gmail.com>
> >> > +Date: Sat, 26 Jun 2021 14:19:10 -0700
> >> > +Subject: [PATCH] Sources.mk: Remove xml/PmuXMLParser.h header from
> >> > + GATORD_CXX_SRC_FILES
> >> > +
> >> > +This otherwise appears in final linker cmdline and clang is not happy
> >> > +since it sees this as an output file along with the real output file
> >> > +specified with -o and bails out
> >> > +
> >> > +| clang-13: error: cannot specify -o when generating multiple output files
> >> > +
> >>
> >> Upstream-Status?
> >
> >
> > Pending
> >
> >>
> >>
> >>
> >> > +Signed-off-by: Khem Raj <raj.khem@gmail.com>
> >> > +---
> >> > + daemon/Sources.mk | 3 +--
> >> > + 1 file changed, 1 insertion(+), 2 deletions(-)
> >> > +
> >> > +diff --git a/daemon/Sources.mk b/daemon/Sources.mk
> >> > +index 60d15ef..3e679f5 100644
> >> > +--- a/daemon/Sources.mk
> >> > ++++ b/daemon/Sources.mk
> >> > +@@ -147,5 +147,4 @@ GATORD_CXX_SRC_FILES := \
> >> > +     xml/EventsXMLProcessor.cpp \
> >> > +     xml/MxmlUtils.cpp \
> >> > +     xml/PmuXML.cpp \
> >> > +-    xml/PmuXMLParser.cpp \
> >> > +-    xml/PmuXMLParser.h
> >> > ++    xml/PmuXMLParser.cpp
> >> > +--
> >> > +2.32.0
> >> > +
> >> > diff --git a/meta-arm/recipes-devtools/gator-daemon/gator-daemon_7.7.0.bb b/meta-arm/recipes-devtools/gator-daemon/gator-daemon_7.7.0.bb
> >> > index 61b1731..b3ba437 100644
> >> > --- a/meta-arm/recipes-devtools/gator-daemon/gator-daemon_7.7.0.bb
> >> > +++ b/meta-arm/recipes-devtools/gator-daemon/gator-daemon_7.7.0.bb
> >> > @@ -16,7 +16,9 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
> >> >                     "
> >> >
> >> >  SRCREV = "9d8d75fa08352470c51abc23fe3b314879bd8b78"
> >> > -SRC_URI = "git://github.com/ARM-software/gator.git;protocol=http;branch=main"
> >> > +SRC_URI = "git://github.com/ARM-software/gator.git;protocol=http;branch=main \
> >> > +           file://0001-Sources.mk-Remove-xml-PmuXMLParser.h-header-from-GAT.patch;striplevel=2 \
> >> > +          "
> >> >
> >> >  S = "${WORKDIR}/git/daemon"
> >> >
> >> > --
> >> > 2.32.0
> >> >
> >>
> >> --
> >> Regards,
> >> Denys Dmytriyenko <denis@denix.org>
> >> PGP: 0x420902729A92C964 - https://denix.org/0x420902729A92C964
> >> Fingerprint: 25FC E4A5 8A72 2F69 1186  6D76 4209 0272 9A92 C964
> >
> >
> > 
> >

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-06-28 11:21 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-26 21:28 [PATCH] gator-daemon: Do not specify header files in GATORD_CXX_SRC_FILES Khem Raj
2021-06-27 19:08 ` [meta-arm] " Denys Dmytriyenko
2021-06-27 19:30   ` Khem Raj
2021-06-28 11:11     ` Ross Burton
2021-06-28 11:20       ` Ross Burton

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).