sh-elf-vhex - v1.1.0 : Bump binutils and GCC version

@update
<> Makefile
  | use GCC version 11.3.0 and binutils 2.38
  | add vxSDK security

@fix
<> vxsdk.toml
  | remove useless path modification
  | remove the version information
<> Makefile
  | use the new exposed environment variables set by the vxSDK
<> scripts/utils
  | display error string in stderr stream
  | remove the giteapc support
<> script/[gcc|binutils]/configure
  | fix version listing
  | fix version selection
This commit is contained in:
Yann MAGNIN 2022-07-30 22:27:22 +02:00
parent 51e8bfda2c
commit 2d12f3026f
6 changed files with 21 additions and 6 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
build
cache
commit.txt
.vxsdk

View File

@ -1,6 +1,6 @@
VERSION_BINUTILS := 2.37
VERSION_GCC := 11.2.0
VERSION_BINUTILS := 2.38
VERSION_GCC := 11.3.0
ifeq ($(VXSDK_PREFIX_INSTALL),)
$(error you need to use the vxSDK to compile this package)

1
patchs/binutils/2.38 Symbolic link
View File

@ -0,0 +1 @@
2.37

1
patchs/gcc/11.3.0 Symbolic link
View File

@ -0,0 +1 @@
11.2.0

View File

@ -50,9 +50,15 @@ esac; done
# check version
list_version=$(basename $(ls -d ../../patchs/binutils/*))
list_version=''
for tmp in $(ls -d ../../patchs/binutils/*); do
list_version="$list_version $(basename $tmp)"
done
if [[ "$version" == '?' ]]; then
echo "$list_version"
echo "Binutils available versions:"
for ver in $list_version; do
echo " $ver"
done
exit 0
fi
if [[ ! $list_version =~ (^|[[:space:]])$version($|[[:space:]]) ]]; then

View File

@ -49,9 +49,15 @@ esac; done
# check version
list_version=$(basename $(ls -d ../../patchs/gcc/*))
list_version=''
for tmp in $(ls -d ../../patchs/gcc/*); do
list_version="$list_version $(basename $tmp)"
done
if [[ "$version" == '?' ]]; then
echo "$list_version"
echo "GCC available versions:"
for ver in $list_version; do
echo " $ver"
done
exit 0
fi
if [[ ! $list_version =~ (^|[[:space:]])$version($|[[:space:]]) ]]; then