Skip to content

Commit

Permalink
scripts/bldgcc: Update for GCC 11.2.0 and binutils 2.37
Browse files Browse the repository at this point in the history
Signed-off-by: Nathan Chancellor <[email protected]>
  • Loading branch information
nathanchance committed Aug 3, 2021
1 parent b52501e commit 90a4ff9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/bldgcc
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,12 @@ function bldgcc() { (
}

# Download GCC
[[ -z ${GCC_VERSION} ]] && GCC_VERSION=11.1.0
[[ -z ${GCC_VERSION} ]] && GCC_VERSION=11.2.0
GCC_SOURCE=gcc-${GCC_VERSION}
[[ ! -d ${GCC_SOURCE} ]] && curl -LSs https://mirrors.kernel.org/gnu/gcc/${GCC_SOURCE}/${GCC_SOURCE}.tar.xz | tar -xJf -

# Download binutils
[[ -z ${BINUTILS_VERSION} ]] && BINUTILS_VERSION=2.36.1
[[ -z ${BINUTILS_VERSION} ]] && BINUTILS_VERSION=2.37
BINUTILS_SOURCE=binutils-${BINUTILS_VERSION}
[[ ! -d ${BINUTILS_SOURCE} ]] && curl -LSs https://mirrors.kernel.org/gnu/binutils/${BINUTILS_SOURCE}.tar.xz | tar -xJf -

Expand Down

0 comments on commit 90a4ff9

Please sign in to comment.