1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 09:25:31 +02:00

Update GDB download script for 7.10.1

Also fix a bug where the script was
not ready for a two digit version.

Change-Id: Idd3322c46806705e33898a47c79d3ec3c9fc1685
This commit is contained in:
Marc Khouzam 2015-12-13 22:26:59 -05:00 committed by Gerrit Code Review @ Eclipse.org
parent 8a834d5970
commit 5892f19747

View file

@ -27,7 +27,7 @@ default_jlevel="4"
jlevel="${default_jlevel}"
# Supported versions
default_versions="6.6 6.7.1 6.8 7.0.1 7.1 7.2 7.3.1 7.4.1 7.5.1 7.6.2 7.7.1 7.8.2 7.9.1 7.10"
default_versions="6.6 6.7.1 6.8 7.0.1 7.1 7.2 7.3.1 7.4.1 7.5.1 7.6.2 7.7.1 7.8.2 7.9.1 7.10.1"
# Is set to "echo" if we are doing a dry-run.
dryrun=""
@ -237,7 +237,7 @@ function symlink_gdb() {
# If the version is a triplet (x.y.z), also create a symlink with just
# the first two numbers (x.y).
if [[ "$version" =~ [0-9]\.[0-9]\.[0-9] ]]; then
if [[ "$version" =~ [0-9]+\.[0-9]+\.[0-9]+ ]]; then
local short_version="${version%.[0-9]}"
${dryrun} ln -sf "${install_dir}/gdb-${version}/bin/gdb" "${symlinks_dir}/gdb.${short_version}"
${dryrun} ln -sf "${install_dir}/gdb-${version}/bin/gdbserver" "${symlinks_dir}/gdbserver.${short_version}"