From 58ae5bbf25835bd30fa385275ff4486dbc31f0a2 Mon Sep 17 00:00:00 2001 From: BlackNoxis Date: Wed, 3 Dec 2014 03:20:49 +0200 Subject: Making public our Kogaion bin --- bin/bump_crossdev | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 bin/bump_crossdev (limited to 'bin/bump_crossdev') diff --git a/bin/bump_crossdev b/bin/bump_crossdev new file mode 100644 index 0000000..668b817 --- /dev/null +++ b/bin/bump_crossdev @@ -0,0 +1,20 @@ +#!/bin/bash + +ARCHES=( + armv7a-hardfloat-linux-gnueabi + armv7a-unknown-linux-gnueabi + armv6j-hardfloat-linux-gnueabi +) + +GCC_VER="--g ~4.7.3" +LIBC_VER="--l ~2.17" +K_VER="--k ~3.7" +BINUTILS_VER="--b =2.23*" + +for a in "${ARCHES[@]}"; do + # USE="-fortran" or glibc will fail to compile + USE="-fortran -gtk" crossdev -t "${a}" \ + -oS "/usr/local/portage" \ + -oO "/usr/local/portage" \ + ${GCC_VER} ${LIBC_VER} ${K_VER} ${BINUTILS_VER} || exit 1 +done -- cgit v1.2.3