tools-musl: add mips32r2
Signed-off-by: Anthony G. Basile <blueness@gentoo.org>
This commit is contained in:
parent
2e53df5f57
commit
5a74aea195
5 changed files with 77 additions and 0 deletions
15
tools-musl/portage.mips32r2.vanilla/bashrc
Normal file
15
tools-musl/portage.mips32r2.vanilla/bashrc
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
post_src_install() {
|
||||||
|
[[ $PN != musl ]] && return 0
|
||||||
|
|
||||||
|
local LDSO_ARCH=$(basename "${D}"/lib/ld-musl-*.so.1)
|
||||||
|
mkdir "${D}"/etc
|
||||||
|
cat <<- EOF > "${D}"/etc/${LDSO_ARCH%so.1}path
|
||||||
|
/lib
|
||||||
|
/usr/lib
|
||||||
|
/usr/local/lib
|
||||||
|
/usr/lib/opengl/xorg-x11/lib
|
||||||
|
/usr/lib/gcc/${CHOST}/4.8.3
|
||||||
|
/usr/${CHOST}/lib
|
||||||
|
/usr/games/lib
|
||||||
|
EOF
|
||||||
|
}
|
2
tools-musl/portage.mips32r2.vanilla/package.mask
Normal file
2
tools-musl/portage.mips32r2.vanilla/package.mask
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
>sys-devel/gcc-4.8.3-r99
|
||||||
|
>sys-fs/eudev-1.10-r2
|
3
tools-musl/portage.mips32r2.vanilla/package.use
Normal file
3
tools-musl/portage.mips32r2.vanilla/package.use
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
dev-util/pkgconf pkg-config
|
||||||
|
sys-devel/gettext -nls
|
||||||
|
sys-fs/e2fsprogs -nls
|
1
tools-musl/portage.mips32r2.vanilla/profile/use.mask
Normal file
1
tools-musl/portage.mips32r2.vanilla/profile/use.mask
Normal file
|
@ -0,0 +1 @@
|
||||||
|
hardened
|
56
tools-musl/run-mips32r2.sh
Executable file
56
tools-musl/run-mips32r2.sh
Executable file
|
@ -0,0 +1,56 @@
|
||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
source common.sh
|
||||||
|
|
||||||
|
prepare_confs() {
|
||||||
|
local arch=$1
|
||||||
|
local flavor=$2
|
||||||
|
|
||||||
|
for s in 1 2 3; do
|
||||||
|
|
||||||
|
local cstage=stage${s}
|
||||||
|
local p=$(( s - 1 ))
|
||||||
|
[[ $p == 0 ]] && p=3
|
||||||
|
local pstage=stage${p}
|
||||||
|
local tarch="${arch%32r2}"
|
||||||
|
local parch="${tarch}"
|
||||||
|
|
||||||
|
cat stage-all.conf.template | \
|
||||||
|
sed -e "s:\(^version_stamp.*$\):\1-${mydate}:" \
|
||||||
|
-e "s:CSTAGE:${cstage}:g" \
|
||||||
|
-e "s:PSTAGE:${pstage}:g" \
|
||||||
|
-e "s:SARCH:${arch}:g" \
|
||||||
|
-e "s:PARCH:${parch}:g" \
|
||||||
|
-e "s:TARCH:${tarch}:g" \
|
||||||
|
-e "s:FLAVOR:${flavor}:g" \
|
||||||
|
-e "s:MYCATALYST:$(pwd):g" \
|
||||||
|
-e "s|^cflags:.*|cflags: -O2 -march=mips3 -mplt -Wa,-mfix-loongson2f-nop -pipe|" \
|
||||||
|
-e "s|^cxxflags:.*|cxxflags: -O2 -march=mips3 -mplt -Wa,-mfix-loongson2f-nop -pipe|" \
|
||||||
|
> stage${s}-${arch}-musl-${flavor}.conf
|
||||||
|
done
|
||||||
|
|
||||||
|
sed -i "/^chost/d" stage3-${arch}-musl-${flavor}.conf
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
main() {
|
||||||
|
>zzz.log
|
||||||
|
|
||||||
|
catalyst -s current | tee -a zzz.log >snapshot.log 2>snapshot.err
|
||||||
|
|
||||||
|
for arch in mips32r2; do
|
||||||
|
for flavor in vanilla; do
|
||||||
|
prepare_confs ${arch} ${flavor}
|
||||||
|
done
|
||||||
|
done
|
||||||
|
|
||||||
|
# No parallelization for mips. Its too hard on the cpu!
|
||||||
|
for arch in mips32r2; do
|
||||||
|
for flavor in vanilla; do
|
||||||
|
do_stages ${arch} ${flavor}
|
||||||
|
[[ $? == 1 ]] && echo "FAILURE at ${arch} ${flavor} " | tee zzz.log
|
||||||
|
done
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
main $1 &
|
Loading…
Add table
Reference in a new issue