Skip to content

Commit

Permalink
Rust was not enabled in gcc 13
Browse files Browse the repository at this point in the history
  • Loading branch information
dkm committed May 21, 2024
1 parent fd2eda4 commit 4295c16
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,11 @@ else
if [[ "${MAJOR}" -ge 12 ]]; then CONFIG+=" --enable-libstdcxx-backtrace=yes"; fi

# Languages introduced in 13
if [[ "${MAJOR}" -ge 13 ]]; then LANGUAGES=${LANGUAGES},rust,m2; fi
if [[ "${MAJOR}" -ge 13 ]]; then LANGUAGES=${LANGUAGES},m2; fi

# Languages introduced in 14
if [[ "${MAJOR}" -ge 14 ]]; then LANGUAGES=${LANGUAGES},rust; fi

fi
FULLNAME=gcc-${VERSION}
OUTPUT=${ROOT}/${FULLNAME}.tar.xz
Expand Down

0 comments on commit 4295c16

Please sign in to comment.