package/gcc-bare-metal: fix symlink to gcc 14.3.0

With gcc bump to version 14.3.0 in [1]. The gcc-bare-metal version
was not aligned to the same version which led to the following error in
the autobuilder:

```
make[1]: Leaving directory '/workdir/instance-0/output-1/build/host-mpc-1.3.1'
ERROR: No hash found for gcc-14.2.0.tar.xz
make: *** [package/pkg-generic.mk:179: /workdir/instance-0/output-1/build/host-gcc-bare-metal-14.2.0/.stamp_downloaded] Error 1
```

This patch align gcc-bare-metal with the version of gcc 14.

[1] 1e8c1e0ef0 package/gcc: update to 14.3.0

Fixes: https://autobuild.buildroot.org/results/3a2/3a228e885cb04e0c91eee470f9622e0e44eec3d7
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
This commit is contained in:
Thomas Perale
2025-08-09 19:25:42 +02:00
parent e69822b2dc
commit 176fed6cc0
3 changed files with 2 additions and 2 deletions

View File

@@ -1 +0,0 @@
../gcc/14.2.0/

View File

@@ -0,0 +1 @@
../gcc/14.3.0/

View File

@@ -4,7 +4,7 @@
#
################################################################################
GCC_BARE_METAL_VERSION = 14.2.0
GCC_BARE_METAL_VERSION = 14.3.0
GCC_BARE_METAL_SITE = $(BR2_GNU_MIRROR)/gcc/gcc-$(GCC_BARE_METAL_VERSION)
GCC_BARE_METAL_SOURCE = gcc-$(GCC_BARE_METAL_VERSION).tar.xz