diff --git a/recipes/gcc/recipe.sh b/recipes/gcc/recipe.sh index c6e17ae24..90cefc451 100644 --- a/recipes/gcc/recipe.sh +++ b/recipes/gcc/recipe.sh @@ -1,12 +1,13 @@ -TAR=https://gitlab.redox-os.org/redox-os/gcc/-/archive/redox/gcc-redox.tar.gz +VERSION="13.2.0" +TAR="https://gitlab.redox-os.org/redox-os/gcc/-/archive/redox-${VERSION}/gcc-redox-${VERSION}.tar.gz" #GIT=https://gitlab.redox-os.org/redox-os/gcc.git #GIT_UPSTREAM=https://gcc.gnu.org/git/gcc.git -#BRANCH=redox +#BRANCH="redox-${VERSION}" BUILD_DEPENDS=(relibc) DEPENDS="gnu-binutils relibc" function recipe_version { - printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" + echo "${VERSION}" skip=1 } diff --git a/recipes/gnu-binutils/recipe.sh b/recipes/gnu-binutils/recipe.sh index 61ba12131..7a3ae213c 100644 --- a/recipes/gnu-binutils/recipe.sh +++ b/recipes/gnu-binutils/recipe.sh @@ -1,5 +1,5 @@ GIT=https://gitlab.redox-os.org/redox-os/binutils-gdb.git -BRANCH=redox +BRANCH=redox-2.41 GIT_UPSTREAM=git://sourceware.org/git/binutils-gdb.git BUILD_DEPENDS=(expat libgmp)