58 lines
2.0 KiB
Bash
58 lines
2.0 KiB
Bash
# Template file for 'cross-i686-linux-musl'
|
|
_triplet=i686-linux-musl
|
|
_binutils_version=2.32
|
|
_gcc_version=9.3.0
|
|
_musl_version=1.1.24
|
|
_linux_version=4.19
|
|
_libucontext_version=0.9.0
|
|
pkgname=cross-${_triplet}
|
|
version=0.33
|
|
revision=3
|
|
build_style=void-cross
|
|
hostmakedepends="tar gcc-objc gcc-go flex perl python3"
|
|
makedepends="isl15-devel libmpc-devel zlib-devel gmp-devel mpfr-devel"
|
|
depends="${pkgname}-libc-${version}_${revision}"
|
|
short_desc="Void cross toolchain for ${_triplet}"
|
|
maintainer="Jürgen Buchmüller <pullmoll@t-online.de>"
|
|
homepage="https://www.voidlinux.org/"
|
|
license="GPL-2.0-or-later, GPL-3.0-or-later, MIT"
|
|
distfiles="
|
|
${GNU_SITE}/binutils/binutils-${_binutils_version}.tar.xz
|
|
${GNU_SITE}/gcc/gcc-${_gcc_version}/gcc-${_gcc_version}.tar.xz
|
|
http://www.musl-libc.org/releases/musl-${_musl_version}.tar.gz
|
|
${KERNEL_SITE}/kernel/v4.x/linux-${_linux_version}.tar.xz
|
|
https://distfiles.adelielinux.org/source/libucontext/libucontext-${_libucontext_version}.tar.xz"
|
|
checksum="0ab6c55dd86a92ed561972ba15b9b70a8b9f75557f896446c82e8b36e473ee04
|
|
71e197867611f6054aa1119b13a0c0abac12834765fe2d81f35ac57f84f742d1
|
|
1370c9a812b2cf2a7d92802510cca0058cc37e66a7bedd70051f0a34015022a3
|
|
0c68f5655528aed4f99dae71a5b259edc93239fa899e2df79c055275c21749a1
|
|
0d53a415a307ef175153bbe60a572c940a922cb736ce13530b666e7ec2795d68"
|
|
nocross=yes
|
|
|
|
cross_triplet=${_triplet}
|
|
cross_libucontext_arch=x86
|
|
cross_linux_arch=x86
|
|
# explicitly enable for final gcc, as gfortran does not build without on x86
|
|
cross_gcc_configure_args="--enable-libquadmath"
|
|
cross_musl_cflags="-O2 -march=i686 -mtune=generic"
|
|
|
|
if [ "$XBPS_TARGET_MACHINE" = "i686-musl" ]; then
|
|
broken="Can't build crosstoolchain to itself"
|
|
fi
|
|
|
|
post_patch() {
|
|
vsed -i libucontext-${_libucontext_version}/arch/x86/startcontext.S \
|
|
-e "s;__i686.get_pc_thunk.bx;i686_get_pc_thunk_bx;g"
|
|
}
|
|
|
|
cross-i686-linux-musl-libc_package() {
|
|
short_desc+=" - libc files"
|
|
nostrip=yes
|
|
noverifyrdeps=yes
|
|
noshlibprovides=yes
|
|
|
|
pkg_install() {
|
|
vmove usr/${cross_triplet}
|
|
}
|
|
}
|