diff options
author | V3n3RiX <venerix@rogentos.ro> | 2015-10-03 16:29:43 +0100 |
---|---|---|
committer | V3n3RiX <venerix@rogentos.ro> | 2015-10-03 16:29:43 +0100 |
commit | 01e0750c93427cde2b2d19261fefa5d1373e9c37 (patch) | |
tree | b7fb870ea7cf41fbf9174bac1d3f024656b7ccc0 /bin/bump_crossdev | |
parent | dfec061a2da2a936da146db7f261a840faed73ac (diff) |
drop any entropy shit in here
Diffstat (limited to 'bin/bump_crossdev')
-rw-r--r-- | bin/bump_crossdev | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/bin/bump_crossdev b/bin/bump_crossdev deleted file mode 100644 index 668b817..0000000 --- a/bin/bump_crossdev +++ /dev/null @@ -1,20 +0,0 @@ -#!/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 |