* [PATCH] arm-bsp/external-system: remove redundant DEBUG_PREFIX_MAP fiddling
@ 2026-02-06 14:44 Ross Burton
2026-02-06 16:20 ` [meta-arm] " Denys Dmytriyenko
2026-02-12 4:02 ` Jon Mason
0 siblings, 2 replies; 4+ messages in thread
From: Ross Burton @ 2026-02-06 14:44 UTC (permalink / raw)
To: meta-arm
We have a newer gcc-arm-none-eabi now, so this can be removed.
Signed-off-by: Ross Burton <ross.burton@arm.com>
---
.../recipes-bsp/external-system/external-system_0.1.0.bb | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/meta-arm-bsp/recipes-bsp/external-system/external-system_0.1.0.bb b/meta-arm-bsp/recipes-bsp/external-system/external-system_0.1.0.bb
index d297c9d047..1d08817e78 100644
--- a/meta-arm-bsp/recipes-bsp/external-system/external-system_0.1.0.bb
+++ b/meta-arm-bsp/recipes-bsp/external-system/external-system_0.1.0.bb
@@ -21,16 +21,13 @@ PRODUCT = "corstone-1000"
B = "${WORKDIR}/build"
-# remove once arm-none-eabi-gcc updates to 13 or newer like poky
-DEBUG_PREFIX_MAP:remove = "-fcanon-prefix-map"
-
LDFLAGS[unexport] = "1"
do_compile() {
oe_runmake -C ${S} V=y \
BUILD_PATH=${B} \
- PRODUCT=${PRODUCT} \
- CROSS_COMPILE=arm-none-eabi- \
+ PRODUCT=${PRODUCT} \
+ CROSS_COMPILE=arm-none-eabi- \
all
}
--
2.43.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [meta-arm] [PATCH] arm-bsp/external-system: remove redundant DEBUG_PREFIX_MAP fiddling
2026-02-06 14:44 [PATCH] arm-bsp/external-system: remove redundant DEBUG_PREFIX_MAP fiddling Ross Burton
@ 2026-02-06 16:20 ` Denys Dmytriyenko
2026-02-09 11:57 ` Ross Burton
2026-02-12 4:02 ` Jon Mason
1 sibling, 1 reply; 4+ messages in thread
From: Denys Dmytriyenko @ 2026-02-06 16:20 UTC (permalink / raw)
To: ross.burton; +Cc: meta-arm
On Fri, Feb 06, 2026 at 02:44:02PM +0000, Ross Burton via lists.yoctoproject.org wrote:
> We have a newer gcc-arm-none-eabi now, so this can be removed.
Still no plans for a proper baremetal multiconfig? Promises, promises... ;)
> Signed-off-by: Ross Burton <ross.burton@arm.com>
> ---
> .../recipes-bsp/external-system/external-system_0.1.0.bb | 7 ++-----
> 1 file changed, 2 insertions(+), 5 deletions(-)
>
> diff --git a/meta-arm-bsp/recipes-bsp/external-system/external-system_0.1.0.bb b/meta-arm-bsp/recipes-bsp/external-system/external-system_0.1.0.bb
> index d297c9d047..1d08817e78 100644
> --- a/meta-arm-bsp/recipes-bsp/external-system/external-system_0.1.0.bb
> +++ b/meta-arm-bsp/recipes-bsp/external-system/external-system_0.1.0.bb
> @@ -21,16 +21,13 @@ PRODUCT = "corstone-1000"
>
> B = "${WORKDIR}/build"
>
> -# remove once arm-none-eabi-gcc updates to 13 or newer like poky
> -DEBUG_PREFIX_MAP:remove = "-fcanon-prefix-map"
> -
> LDFLAGS[unexport] = "1"
>
> do_compile() {
> oe_runmake -C ${S} V=y \
> BUILD_PATH=${B} \
> - PRODUCT=${PRODUCT} \
> - CROSS_COMPILE=arm-none-eabi- \
> + PRODUCT=${PRODUCT} \
> + CROSS_COMPILE=arm-none-eabi- \
> all
> }
>
> --
> 2.43.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [meta-arm] [PATCH] arm-bsp/external-system: remove redundant DEBUG_PREFIX_MAP fiddling
2026-02-06 16:20 ` [meta-arm] " Denys Dmytriyenko
@ 2026-02-09 11:57 ` Ross Burton
0 siblings, 0 replies; 4+ messages in thread
From: Ross Burton @ 2026-02-09 11:57 UTC (permalink / raw)
To: Denys Dmytriyenko; +Cc: meta-arm@lists.yoctoproject.org
On 6 Feb 2026, at 16:20, Denys Dmytriyenko <denis@denix.org> wrote:
>
> On Fri, Feb 06, 2026 at 02:44:02PM +0000, Ross Burton via lists.yoctoproject.org wrote:
>> We have a newer gcc-arm-none-eabi now, so this can be removed.
>
> Still no plans for a proper baremetal multiconfig? Promises, promises... ;)
Plans, absolutely! Probably the first jira ticket I self-assigned when I started at Arm…
Patches welcome :)
Ross
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] arm-bsp/external-system: remove redundant DEBUG_PREFIX_MAP fiddling
2026-02-06 14:44 [PATCH] arm-bsp/external-system: remove redundant DEBUG_PREFIX_MAP fiddling Ross Burton
2026-02-06 16:20 ` [meta-arm] " Denys Dmytriyenko
@ 2026-02-12 4:02 ` Jon Mason
1 sibling, 0 replies; 4+ messages in thread
From: Jon Mason @ 2026-02-12 4:02 UTC (permalink / raw)
To: meta-arm, Ross Burton
On Fri, 06 Feb 2026 14:44:02 +0000, Ross Burton wrote:
> We have a newer gcc-arm-none-eabi now, so this can be removed.
>
>
Applied, thanks!
[1/1] arm-bsp/external-system: remove redundant DEBUG_PREFIX_MAP fiddling
commit: 320301be3d88b6c9a2f7ae474d9f140c173b76d7
Best regards,
--
Jon Mason <jon.mason@arm.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-02-12 4:03 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-06 14:44 [PATCH] arm-bsp/external-system: remove redundant DEBUG_PREFIX_MAP fiddling Ross Burton
2026-02-06 16:20 ` [meta-arm] " Denys Dmytriyenko
2026-02-09 11:57 ` Ross Burton
2026-02-12 4:02 ` Jon Mason
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.