cross-i686-pc-linux-gnu: sync with other cross pkgs.
This commit is contained in:
parent
205450a91a
commit
dd68612b09
|
@ -7,7 +7,7 @@ _linux_version=3.18.5
|
||||||
|
|
||||||
_triplet=i686-pc-linux-gnu
|
_triplet=i686-pc-linux-gnu
|
||||||
_archflags="-march=i686 -mtune=generic"
|
_archflags="-march=i686 -mtune=generic"
|
||||||
_CROSS_SYSROOT="/usr/${_triplet}"
|
_sysroot="/usr/${_triplet}"
|
||||||
|
|
||||||
pkgname=cross-${_triplet}
|
pkgname=cross-${_triplet}
|
||||||
version=0.20
|
version=0.20
|
||||||
|
@ -57,7 +57,7 @@ _binutils_build() {
|
||||||
|
|
||||||
../binutils-${_binutils_version}/configure \
|
../binutils-${_binutils_version}/configure \
|
||||||
--prefix=/usr --target=${_triplet} \
|
--prefix=/usr --target=${_triplet} \
|
||||||
--with-sysroot=${_CROSS_SYSROOT} --disable-nls --disable-shared \
|
--with-sysroot=${_sysroot} --disable-nls --disable-shared \
|
||||||
--disable-multilib --disable-werror
|
--disable-multilib --disable-werror
|
||||||
|
|
||||||
make configure-host && make ${makejobs}
|
make configure-host && make ${makejobs}
|
||||||
|
@ -101,7 +101,7 @@ _linux_headers() {
|
||||||
cd linux-${_linux_version}
|
cd linux-${_linux_version}
|
||||||
|
|
||||||
make ARCH=x86 headers_check
|
make ARCH=x86 headers_check
|
||||||
make ARCH=x86 INSTALL_HDR_PATH=${_CROSS_SYSROOT}/usr headers_install
|
make ARCH=x86 INSTALL_HDR_PATH=${_sysroot}/usr headers_install
|
||||||
|
|
||||||
touch ${wrksrc}/.linux_build_done
|
touch ${wrksrc}/.linux_build_done
|
||||||
}
|
}
|
||||||
|
@ -124,12 +124,12 @@ _glibc_headers() {
|
||||||
|
|
||||||
../glibc-${_glibc_version}/configure \
|
../glibc-${_glibc_version}/configure \
|
||||||
--host=${_triplet} --prefix=/usr \
|
--host=${_triplet} --prefix=/usr \
|
||||||
--with-headers=${_CROSS_SYSROOT}/usr/include \
|
--with-headers=${_sysroot}/usr/include \
|
||||||
--config-cache --enable-obsolete-rpc \
|
--config-cache --enable-obsolete-rpc \
|
||||||
--enable-kernel=2.6.27 ${_fpuflags}
|
--enable-kernel=2.6.27 ${_fpuflags}
|
||||||
|
|
||||||
make -k install-headers cross_compiling=yes \
|
make -k install-headers cross_compiling=yes \
|
||||||
install_root=${_CROSS_SYSROOT}
|
install_root=${_sysroot}
|
||||||
|
|
||||||
touch ${wrksrc}/.glibc_headers_done
|
touch ${wrksrc}/.glibc_headers_done
|
||||||
}
|
}
|
||||||
|
@ -153,12 +153,12 @@ _glibc_build() {
|
||||||
|
|
||||||
../glibc-${_glibc_version}/configure \
|
../glibc-${_glibc_version}/configure \
|
||||||
--host=${_triplet} --prefix=/usr \
|
--host=${_triplet} --prefix=/usr \
|
||||||
--with-headers=${_CROSS_SYSROOT}/usr/include \
|
--with-headers=${_sysroot}/usr/include \
|
||||||
--config-cache --enable-obsolete-rpc \
|
--config-cache --enable-obsolete-rpc \
|
||||||
--enable-kernel=2.6.27 ${_fpuflags}
|
--enable-kernel=2.6.27 ${_fpuflags}
|
||||||
|
|
||||||
make ${makejobs}
|
make ${makejobs}
|
||||||
make install_root=${_CROSS_SYSROOT} install
|
make install_root=${_sysroot} install
|
||||||
|
|
||||||
touch ${wrksrc}/.glibc_build_done
|
touch ${wrksrc}/.glibc_build_done
|
||||||
}
|
}
|
||||||
|
@ -177,14 +177,14 @@ _gcc_build() {
|
||||||
|
|
||||||
# Make this link to target libs.
|
# Make this link to target libs.
|
||||||
if [ ! -f .sed_subst_done ]; then
|
if [ ! -f .sed_subst_done ]; then
|
||||||
sed -e "s, /lib/, ${_CROSS_SYSROOT}/lib/,g;s, /usr/lib/, ${_CROSS_SYSROOT}/usr/lib/,g" \
|
sed -e "s, /lib/, ${_sysroot}/lib/,g;s, /usr/lib/, ${_sysroot}/usr/lib/,g" \
|
||||||
-i ${_CROSS_SYSROOT}/lib/libc.so ${_CROSS_SYSROOT}/lib/libpthread.so
|
-i ${_sysroot}/lib/libc.so ${_sysroot}/lib/libpthread.so
|
||||||
touch .sed_subst_done
|
touch .sed_subst_done
|
||||||
fi
|
fi
|
||||||
|
|
||||||
../gcc-${_gcc_version}/configure \
|
../gcc-${_gcc_version}/configure \
|
||||||
--target=${_triplet} --prefix=/usr --libdir=/usr/lib \
|
--target=${_triplet} --prefix=/usr --libdir=/usr/lib \
|
||||||
--with-sysroot=${_CROSS_SYSROOT} --enable-languages=c,c++,lto \
|
--with-sysroot=${_sysroot} --enable-languages=c,c++,lto \
|
||||||
--with-gnu-as --with-gnu-ld --disable-multilib \
|
--with-gnu-as --with-gnu-ld --disable-multilib \
|
||||||
--disable-nls --disable-sjlj-exceptions \
|
--disable-nls --disable-sjlj-exceptions \
|
||||||
--enable-threads=posix --enable-long-longx \
|
--enable-threads=posix --enable-long-longx \
|
||||||
|
@ -208,11 +208,11 @@ do_build() {
|
||||||
export CFLAGS="-Os" CXXFLAGS="-Os"
|
export CFLAGS="-Os" CXXFLAGS="-Os"
|
||||||
|
|
||||||
for f in include lib libexec bin sbin; do
|
for f in include lib libexec bin sbin; do
|
||||||
if [ ! -d ${_CROSS_SYSROOT}/usr/${f} ]; then
|
if [ ! -d ${_sysroot}/usr/${f} ]; then
|
||||||
mkdir -p ${_CROSS_SYSROOT}/usr/${f}
|
mkdir -p ${_sysroot}/usr/${f}
|
||||||
fi
|
fi
|
||||||
if [ ! -h ${_CROSS_SYSROOT}/${f} ]; then
|
if [ ! -h ${_sysroot}/${f} ]; then
|
||||||
ln -sfr ${_CROSS_SYSROOT}/usr/${f} ${_CROSS_SYSROOT}/${f}
|
ln -sfr ${_sysroot}/usr/${f} ${_sysroot}/${f}
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@ -226,12 +226,12 @@ do_build() {
|
||||||
|
|
||||||
do_install() {
|
do_install() {
|
||||||
for f in include lib libexec bin sbin; do
|
for f in include lib libexec bin sbin; do
|
||||||
if [ ! -d ${DESTDIR}/${_CROSS_SYSROOT}/usr/${f} ]; then
|
if [ ! -d ${DESTDIR}/${_sysroot}/usr/${f} ]; then
|
||||||
mkdir -p ${DESTDIR}/${_CROSS_SYSROOT}/usr/${f}
|
mkdir -p ${DESTDIR}/${_sysroot}/usr/${f}
|
||||||
fi
|
fi
|
||||||
if [ ! -h ${DESTDIR}/${_CROSS_SYSROOT}/${f} ]; then
|
if [ ! -h ${DESTDIR}/${_sysroot}/${f} ]; then
|
||||||
ln -sfr ${DESTDIR}/${_CROSS_SYSROOT}/usr/${f} \
|
ln -sfr ${DESTDIR}/${_sysroot}/usr/${f} \
|
||||||
${DESTDIR}/${_CROSS_SYSROOT}/${f}
|
${DESTDIR}/${_sysroot}/${f}
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@ -245,37 +245,30 @@ do_install() {
|
||||||
|
|
||||||
# install linux API headers for x86.
|
# install linux API headers for x86.
|
||||||
cd ${wrksrc}/linux-${_linux_version}
|
cd ${wrksrc}/linux-${_linux_version}
|
||||||
make ARCH=x86 INSTALL_HDR_PATH=${DESTDIR}/${_CROSS_SYSROOT}/usr headers_install
|
make ARCH=x86 INSTALL_HDR_PATH=${DESTDIR}/${_sysroot}/usr headers_install
|
||||||
|
|
||||||
rm -f $(find ${DESTDIR}/${_CROSS_SYSROOT}/usr/include -name .install -or -name ..install.cmd)
|
rm -f $(find ${DESTDIR}/${_sysroot}/usr/include -name .install -or -name ..install.cmd)
|
||||||
rm -rf ${DESTDIR}/${_CROSS_SYSROOT}/usr/include/drm
|
rm -rf ${DESTDIR}/${_sysroot}/usr/include/drm
|
||||||
|
|
||||||
# install glibc for target
|
# install glibc for target
|
||||||
cd ${wrksrc}/glibc-build
|
cd ${wrksrc}/glibc-build
|
||||||
make install_root=${DESTDIR}/${_CROSS_SYSROOT} install install-headers
|
make install_root=${DESTDIR}/${_sysroot} install install-headers
|
||||||
|
|
||||||
# Remove unnecessary stuff
|
# Remove unnecessary stuff
|
||||||
rm -f ${DESTDIR}/usr/lib*/libiberty.a
|
rm -f ${DESTDIR}/usr/lib*/libiberty.a
|
||||||
rm -rf ${DESTDIR}/usr/share
|
rm -rf ${DESTDIR}/usr/share
|
||||||
rm -rf ${DESTDIR}/${_CROSS_SYSROOT}/{etc,var}
|
rm -rf ${DESTDIR}/${_sysroot}/{sbin,bin,lib,etc,var}
|
||||||
rm -rf ${DESTDIR}/${_CROSS_SYSROOT}/usr/{sbin,share,libexec}
|
rm -rf ${DESTDIR}/${_sysroot}/usr/{sbin,share,libexec}
|
||||||
rm -rf ${DESTDIR}/${_CROSS_SYSROOT}/usr/lib/gconv
|
rm -rf ${DESTDIR}/${_sysroot}/usr/lib/gconv
|
||||||
rm -f ${DESTDIR}/${_CROSS_SYSROOT}/libexec
|
rm -f ${DESTDIR}/${_sysroot}/libexec
|
||||||
|
|
||||||
for f in sprof localedef gencat pldd sotruss tzselect iconv mtrace \
|
|
||||||
catchsegv xtrace makedb pcprofiledump locale rpcgen getconf \
|
|
||||||
getent ldd; do
|
|
||||||
rm -f ${DESTDIR}/${_CROSS_SYSROOT}/usr/bin/${f}
|
|
||||||
done
|
|
||||||
}
|
}
|
||||||
|
|
||||||
cross-i686-pc-linux-gnu-libc_package() {
|
cross-i686-pc-linux-gnu-libc_package() {
|
||||||
short_desc+=" - glibc files"
|
short_desc+=" - glibc files"
|
||||||
noarch=yes
|
noarch=yes
|
||||||
nostrip=yes
|
noverifyrdeps=yes
|
||||||
noverifydeps=yes
|
|
||||||
noshlibprovides=yes
|
noshlibprovides=yes
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vmove usr/${_triplet}
|
vmove ${_sysroot}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue