Skip to content

Commit

Permalink
gdb: use 7.12 for gcc 4 and 5(fixes bug with i686 gcc builds)
Browse files Browse the repository at this point in the history
  • Loading branch information
Furniel committed Aug 14, 2019
1 parent 610b30c commit f649dac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/gdb.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

# **************************************************************************

PKG_VERSION=$( [[ $GCC_NAME == gcc-4.6* || $GCC_NAME == gcc-4.7* || $GCC_NAME == gcc-4.8.0 ]] && { echo 7.12; } || { echo 8.3; } )
PKG_VERSION=$( [[ ${BUILD_VERSION:0:1} == 4 || ${BUILD_VERSION:0:1} == 5 ]] && { echo 7.12; } || { echo 8.3; } )
PKG_NAME=gdb-${PKG_VERSION}
PKG_DIR_NAME=gdb-${PKG_VERSION}
PKG_TYPE=.tar.xz
Expand Down

0 comments on commit f649dac

Please sign in to comment.