PKGBUILDs/core/gcc/PKGBUILD

245 lines
8.1 KiB
Bash
Raw Normal View History

2011-11-01 18:57:33 +00:00
# $Id: PKGBUILD 141367 2011-10-30 06:46:41Z allan $
# Maintainer: Allan McRae <allan@archlinux.org>
# toolchain build order: linux-api-headers->glibc->binutils->gcc->binutils->glibc
2010-07-13 12:29:35 +00:00
# NOTE: libtool requires rebuilt with each new gcc version
2011-12-09 20:46:15 +00:00
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - removed ada, go packages
2011-05-17 03:14:00 +00:00
# - removed gnat (ada stuff) from gcc packaging
# - disabled make check, too much stress, kills plugs :(
2012-11-05 16:01:23 +00:00
# - specifid build host, disabled distcc
2012-08-18 01:16:49 +00:00
# - patch for v6h/v7h gnueabihf triplet
noautobuild=1
2010-07-13 12:29:35 +00:00
pkgname=('gcc' 'gcc-libs' 'gcc-fortran' 'gcc-objc')
2012-10-13 22:18:45 +00:00
pkgver=4.7.2
2012-11-05 16:01:23 +00:00
pkgrel=2
2012-10-13 22:18:45 +00:00
#_snapshot=4.7-20120721
2010-07-13 12:29:35 +00:00
pkgdesc="The GNU Compiler Collection"
arch=('i686' 'x86_64')
2011-05-17 03:14:00 +00:00
license=('GPL' 'LGPL' 'FDL' 'custom')
2010-07-13 12:29:35 +00:00
url="http://gcc.gnu.org"
2012-11-05 16:01:23 +00:00
makedepends=('binutils>=2.23' 'libmpc' 'cloog' 'ppl' 'doxygen')
checkdepends=('dejagnu')
2012-01-04 22:37:44 +00:00
options=('!libtool' '!emptydirs' '!distcc')
2012-10-13 22:18:45 +00:00
source=(ftp://gcc.gnu.org/pub/gcc/releases/gcc-${pkgver}/gcc-${pkgver}.tar.bz2
#ftp://gcc.gnu.org/pub/gcc/snapshots/${_snapshot}/gcc-${_snapshot}.tar.bz2
2012-01-04 22:37:44 +00:00
gcc_pure64.patch
2012-07-07 17:19:37 +00:00
armhf-triplet-trunk.diff)
2012-10-13 22:18:45 +00:00
md5sums=('cc308a0891e778cfda7a151ab8a6e762'
2012-05-13 23:37:54 +00:00
'ced48436c1b3c981d721a829f1094de1'
2012-07-07 17:19:37 +00:00
'bd7330bd41845929f1e0efb3b7d0a060')
if [ -n "${_snapshot}" ]; then
_basedir="${srcdir}/gcc-${_snapshot}"
else
2010-07-13 12:29:35 +00:00
_basedir="${srcdir}/gcc-${pkgver}"
fi
build() {
2010-07-13 12:29:35 +00:00
cd ${_basedir}
2010-07-13 12:29:35 +00:00
# Do not install libiberty
sed -i 's/install_to_$(INSTALL_DEST) //' libiberty/Makefile.in
# Do not run fixincludes
sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in
if [ "${CARCH}" = "x86_64" ]; then
2012-05-13 23:37:54 +00:00
patch -p1 -i ${srcdir}/gcc_pure64.patch
fi
2010-07-13 12:29:35 +00:00
echo ${pkgver} > gcc/BASE-VER
2012-07-07 17:19:37 +00:00
# ALARM: Specify build host types, triplet patch
2012-11-05 16:01:23 +00:00
[[ $CARCH == "arm" ]] && CONFIGFLAG="--host=armv5tel-unknown-linux-gnueabi --build=armv5tel-unknown-linux-gnueabi"
[[ $CARCH == "armv6h" ]] && CONFIGFLAG="--host=armv6l-unknown-linux-gnueabihf --build=armv6l-unknown-linux-gnueabihf --with-arch=armv6 --with-float=hard --with-fpu=vfp"
[[ $CARCH == "armv7h" ]] && CONFIGFLAG="--host=armv7l-unknown-linux-gnueabihf --build=armv7l-unknown-linux-gnueabihf --with-arch=armv7-a --with-float=hard --with-fpu=vfpv3-d16"
2012-07-29 18:57:34 +00:00
[[ $CARCH == "armv6h" || $CARCH == "armv7h" ]] && patch -p1 -i "${srcdir}/armhf-triplet-trunk.diff"
cd ${srcdir}
mkdir gcc-build && cd gcc-build
2011-05-17 03:14:00 +00:00
${_basedir}/configure --prefix=/usr \
--libdir=/usr/lib --libexecdir=/usr/lib \
--mandir=/usr/share/man --infodir=/usr/share/info \
2011-05-17 03:14:00 +00:00
--with-bugurl=https://bugs.archlinux.org/ \
--enable-languages=c,c++,fortran,lto,objc,obj-c++ \
--enable-shared --enable-threads=posix \
--with-system-zlib --enable-__cxa_atexit \
--disable-libunwind-exceptions --enable-clocale=gnu \
2012-02-05 22:59:17 +00:00
--disable-libstdcxx-pch --enable-libstdcxx-time \
2011-05-17 03:14:00 +00:00
--enable-gnu-unique-object --enable-linker-build-id \
--with-ppl --enable-cloog-backend=isl \
2012-07-07 17:19:37 +00:00
--disable-ppl-version-check --disable-cloog-version-check \
2011-05-17 03:14:00 +00:00
--enable-lto --enable-gold --enable-ld=default \
--enable-plugin --with-plugin-ld=ld.gold \
2012-05-13 23:37:54 +00:00
--with-linker-hash-style=gnu \
2012-02-05 22:59:17 +00:00
--disable-multilib --disable-libssp \
2012-05-13 23:37:54 +00:00
--disable-build-with-cxx --disable-build-poststage1-with-cxx \
2011-05-17 03:14:00 +00:00
--enable-checking=release $CONFIGFLAG
2012-01-04 22:37:44 +00:00
make
2012-11-05 16:01:23 +00:00
# make documentation
cd $CHOST/libstdc++-v3
make doc-man-doxygen
2011-05-17 03:14:00 +00:00
}
check() {
2012-11-05 16:01:23 +00:00
cd ${srcdir}/gcc-build
# increase stack size to prevent test failures
# http://gcc.gnu.org/bugzilla/show_bug.cgi?id=31827
#ulimit -s 32768
# do not abort on error as some are "expected"
#make -k check || true
#${_basedir}/contrib/test_summary
2010-07-13 12:29:35 +00:00
}
package_gcc-libs()
{
pkgdesc="Runtime libraries shipped by GCC"
2010-07-13 12:29:35 +00:00
groups=('base')
2012-07-07 17:19:37 +00:00
depends=('glibc>=2.16')
2010-07-13 12:29:35 +00:00
install=gcc-libs.install
2012-11-05 16:01:23 +00:00
cd ${srcdir}/gcc-build
make -j1 -C $CHOST/libgcc DESTDIR=${pkgdir} install-shared
2012-05-13 23:37:54 +00:00
for lib in libmudflap libgomp libstdc++-v3/src libitm; do
make -j1 -C $CHOST/$lib DESTDIR=${pkgdir} install-toolexeclibLTLIBRARIES
2010-07-13 12:29:35 +00:00
done
make -j1 -C $CHOST/libstdc++-v3/po DESTDIR=${pkgdir} install
make -j1 -C $CHOST/libgomp DESTDIR=${pkgdir} install-info
2012-05-13 23:37:54 +00:00
make -j1 -C $CHOST/libitm DESTDIR=${pkgdir} install-info
2010-07-13 12:29:35 +00:00
2011-05-17 03:14:00 +00:00
make -j1 DESTDIR=${pkgdir} install-target-libquadmath
make -j1 DESTDIR=${pkgdir} install-target-libgfortran
make -j1 DESTDIR=${pkgdir} install-target-libobjc
2011-05-17 03:14:00 +00:00
# remove unnecessary files installed by install-target-{libquadmath,libgfortran,libobjc}
rm -rf ${pkgdir}/usr/lib/{gcc/,libgfortran.spec}
2010-07-13 12:29:35 +00:00
# remove static libraries
find ${pkgdir} -name *.a -delete
# Install Runtime Library Exception
install -Dm644 ${_basedir}/COPYING.RUNTIME \
${pkgdir}/usr/share/licenses/gcc-libs/RUNTIME.LIBRARY.EXCEPTION
}
2010-07-13 12:29:35 +00:00
package_gcc()
{
pkgdesc="The GNU Compiler Collection - C and C++ frontends"
2012-11-05 16:01:23 +00:00
depends=("gcc-libs=$pkgver-$pkgrel" 'binutils>=2.23' 'libmpc' 'cloog' 'ppl')
2010-07-13 12:29:35 +00:00
groups=('base-devel')
install=gcc.install
2012-11-05 16:01:23 +00:00
cd ${srcdir}/gcc-build
2010-07-13 12:29:35 +00:00
make -j1 DESTDIR=${pkgdir} install
2012-05-13 23:37:54 +00:00
install -d $pkgdir/usr/share/gdb/auto-load/usr/lib
mv $pkgdir{,/usr/share/gdb/auto-load}/usr/lib/libstdc++.so.6.0.17-gdb.py
# unfortunately it is much, much easier to install the lot and clean-up the mess...
2011-11-01 19:01:48 +00:00
rm -f $pkgdir/usr/bin/{$CHOST-,}gfortran
2011-05-17 03:14:00 +00:00
rm -f $pkgdir/usr/lib/*.so*
2011-11-01 18:57:33 +00:00
rm -f $pkgdir/usr/lib/lib{ffi,gfortran,,objc,quadmath}.a
2011-05-17 03:14:00 +00:00
rm -f $pkgdir/usr/lib/libgfortran.spec
rm -f -r $pkgdir/usr/lib/gcc/$CHOST/${pkgver}/{finclude,include/objc}
2011-05-17 03:14:00 +00:00
rm -f $pkgdir/usr/lib/gcc/$CHOST/${pkgver}/include/{ffi{,target}.h,quadmath{,_weak}.h}
2012-05-13 23:37:54 +00:00
rm -f $pkgdir/usr/lib/gcc/$CHOST/${pkgver}/{cc1obj{,plus},f951}
rm -f $pkgdir/usr/lib/gcc/$CHOST/${pkgver}/{libcaf_single,libgfortranbegin}.a
rm -f $pkgdir/usr/share/info/{gfortran,libgomp,libquadmath,libitm}.info
rm -f $pkgdir/usr/share/locale/{de,fr}/LC_MESSAGES/libstdc++.mo
rm -f $pkgdir/usr/share/man/man1/gfortran.1
2011-05-17 03:14:00 +00:00
rm -f $pkgdir/usr/share/man/man3/ffi*
2012-08-18 01:16:49 +00:00
# many packages expect this symlink
2012-07-07 17:19:37 +00:00
#install -dm755 ${pkgdir}/lib
2012-05-13 23:37:54 +00:00
ln -s gcc ${pkgdir}/usr/bin/cc
2012-02-05 22:59:17 +00:00
# POSIX conformance launcher scripts for c89 and c99
cat > $pkgdir/usr/bin/c89 <<"EOF"
#!/bin/sh
fl="-std=c89"
for opt; do
case "$opt" in
-ansi|-std=c89|-std=iso9899:1990) fl="";;
-std=*) echo "`basename $0` called with non ANSI/ISO C option $opt" >&2
exit 1;;
esac
done
exec gcc $fl ${1+"$@"}
EOF
cat > $pkgdir/usr/bin/c99 <<"EOF"
#!/bin/sh
fl="-std=c99"
for opt; do
case "$opt" in
-std=c99|-std=iso9899:1999) fl="";;
-std=*) echo "`basename $0` called with non ISO C99 option $opt" >&2
exit 1;;
esac
done
exec gcc $fl ${1+"$@"}
EOF
chmod 755 $pkgdir/usr/bin/c{8,9}9
2010-07-13 12:29:35 +00:00
# install the libstdc++ man pages
install -dm755 ${pkgdir}/usr/share/man/man3
2012-11-05 16:01:23 +00:00
install -m644 -t ${pkgdir}/usr/share/man/man3 \
${CHOST}/libstdc++-v3/doc/doxygen/man/man3/*.3
2010-07-13 12:29:35 +00:00
# Install Runtime Library Exception
install -Dm644 ${_basedir}/COPYING.RUNTIME \
${pkgdir}/usr/share/licenses/gcc/RUNTIME.LIBRARY.EXCEPTION
}
2010-07-13 12:29:35 +00:00
package_gcc-fortran()
{
pkgdesc="Fortran front-end for GCC"
depends=("gcc=$pkgver-$pkgrel")
2010-07-13 12:29:35 +00:00
install=gcc-fortran.install
2012-11-05 16:01:23 +00:00
cd ${srcdir}/gcc-build
2011-05-17 03:14:00 +00:00
make -j1 DESTDIR=${pkgdir} install-target-libquadmath
make -j1 DESTDIR=$pkgdir install-target-libgfortran
make -j1 -C $CHOST/libgomp DESTDIR=$pkgdir install-nodist_fincludeHEADERS
make -j1 -C gcc DESTDIR=$pkgdir fortran.install-{common,man,info}
2010-07-13 12:29:35 +00:00
install -Dm755 gcc/f951 $pkgdir/usr/lib/gcc/$CHOST/$pkgver/f951
# remove libraries included in gcc-libs
2011-05-17 03:14:00 +00:00
rm -f ${pkgdir}/usr/lib/lib{gfortran,quadmath}.so*
rm -f ${pkgdir}/usr/share/info/libquadmath.info
2012-05-13 23:37:54 +00:00
ln -s gfortran ${pkgdir}/usr/bin/f95
2010-07-13 12:29:35 +00:00
# Install Runtime Library Exception
install -Dm644 ${_basedir}/COPYING.RUNTIME \
${pkgdir}/usr/share/licenses/gcc-fortran/RUNTIME.LIBRARY.EXCEPTION
}
2010-07-13 12:29:35 +00:00
package_gcc-objc()
{
pkgdesc="Objective-C front-end for GCC"
depends=("gcc=$pkgver-$pkgrel")
2012-11-05 16:01:23 +00:00
cd ${srcdir}/gcc-build
make -j1 DESTDIR=$pkgdir install-target-libobjc
2010-07-13 12:29:35 +00:00
install -dm755 $pkgdir/usr/lib/gcc/$CHOST/$pkgver/
install -m755 gcc/cc1obj{,plus} $pkgdir/usr/lib/gcc/$CHOST/$pkgver/
2010-07-13 12:29:35 +00:00
# remove libraries included in gcc-libs
rm -f ${pkgdir}/usr/lib/libobjc.so*
2010-07-13 12:29:35 +00:00
# Install Runtime Library Exception
install -Dm644 ${_basedir}/COPYING.RUNTIME \
${pkgdir}/usr/share/licenses/gcc-objc/RUNTIME.LIBRARY.EXCEPTION
}