PKGBUILDs/core/gcc/PKGBUILD

264 lines
8.8 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>
2013-04-04 15:40:31 +00:00
# - removed ada 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
2013-04-04 15:40:31 +00:00
# - replaced bugurl with our GitHub issue page
noautobuild=1
2013-02-18 05:44:57 +00:00
pkgname=('gcc' 'gcc-libs' 'gcc-fortran' 'gcc-objc' 'gcc-go')
2013-06-03 15:48:46 +00:00
pkgver=4.8.1
pkgrel=1
#_snapshot=4.8-20130502
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"
2013-04-04 15:40:31 +00:00
makedepends=('binutils>=2.23' 'libmpc' 'cloog' 'doxygen')
2013-04-15 04:26:00 +00:00
checkdepends=('dejagnu' 'inetutils')
2012-01-04 22:37:44 +00:00
options=('!libtool' '!emptydirs' '!distcc')
2013-06-03 15:48:46 +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-07-07 17:19:37 +00:00
armhf-triplet-trunk.diff)
2013-06-03 15:48:46 +00:00
md5sums=('3b2386c114cd74185aa3754b58a79304'
2012-07-07 17:19:37 +00:00
'bd7330bd41845929f1e0efb3b7d0a060')
if [ -n "${_snapshot}" ]; then
2013-04-04 15:40:31 +00:00
_basedir=gcc-${_snapshot}
else
2013-04-04 15:40:31 +00:00
_basedir=gcc-${pkgver}
fi
2013-04-15 04:26:00 +00:00
prepare() {
2013-04-04 15:40:31 +00:00
cd ${srcdir}/${_basedir}
2010-07-13 12:29:35 +00:00
# Do not run fixincludes
sed -i 's@\./fixinc\.sh@-c true@' gcc/Makefile.in
echo ${pkgver} > gcc/BASE-VER
2013-04-15 04:26:00 +00:00
# hack! - some configure tests for header files using "$CPP $CPPFLAGS"
sed -i "/ac_cpp=/s/\$CPPFLAGS/\$CPPFLAGS -O2/" {libiberty,gcc}/configure
mkdir ${srcdir}/gcc-build
}
build() {
cd ${srcdir}/gcc-build
2013-01-27 04:07:09 +00:00
# using -pipe causes spurious test-suite failures
# http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48565
CFLAGS=${CFLAGS/-pipe/}
CXXFLAGS=${CXXFLAGS/-pipe/}
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"
2013-04-04 15:40:31 +00:00
${srcdir}/${_basedir}/configure --prefix=/usr \
--libdir=/usr/lib --libexecdir=/usr/lib \
--mandir=/usr/share/man --infodir=/usr/share/info \
2013-04-04 15:40:31 +00:00
--with-bugurl=https://github.com/archlinuxarm/PKGBUILDs/issues \
2013-02-18 05:44:57 +00:00
--enable-languages=c,c++,fortran,go,lto,objc,obj-c++ \
2011-05-17 03:14:00 +00:00
--enable-shared --enable-threads=posix \
--with-system-zlib --enable-__cxa_atexit \
--disable-libunwind-exceptions --enable-clocale=gnu \
2013-04-04 15:40:31 +00:00
--disable-libstdcxx-pch \
2011-05-17 03:14:00 +00:00
--enable-gnu-unique-object --enable-linker-build-id \
2013-04-04 15:40:31 +00:00
--enable-cloog-backend=isl --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 \
2013-04-04 15:40:31 +00:00
--with-linker-hash-style=gnu --disable-install-libiberty \
--disable-multilib --disable-libssp --disable-werror \
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
2013-04-04 15:40:31 +00:00
#${srcdir}/${_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-12-30 02:27:26 +00:00
depends=('glibc>=2.17')
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
2013-04-04 15:40:31 +00:00
for lib in libmudflap libgomp libstdc++-v3/src libitm libsanitizer/asan; 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
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
2013-04-04 15:40:31 +00:00
install -Dm644 ${srcdir}/${_basedir}/COPYING.RUNTIME \
2010-07-13 12:29:35 +00:00
${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"
2013-04-04 15:40:31 +00:00
depends=("gcc-libs=$pkgver-$pkgrel" 'binutils>=2.23' 'libmpc' 'cloog')
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
2013-04-04 15:40:31 +00:00
mv $pkgdir{,/usr/share/gdb/auto-load}/usr/lib/libstdc++.so.6.0.18-gdb.py
2012-05-13 23:37:54 +00:00
# unfortunately it is much, much easier to install the lot and clean-up the mess...
2013-02-18 05:44:57 +00:00
rm -f $pkgdir/usr/bin/{{$CHOST-,}gfortran,{$CHOST-,}gccgo}
2011-05-17 03:14:00 +00:00
rm -f $pkgdir/usr/lib/*.so*
2013-04-15 04:26:00 +00:00
rm -f $pkgdir/usr/lib/lib{atomic,gfortran,go{,begin},iberty,objc}.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}
2013-02-18 05:44:57 +00:00
rm -f $pkgdir/usr/lib/gcc/$CHOST/${pkgver}/{cc1obj{,plus},f951,go1}
2012-05-13 23:37:54 +00:00
rm -f $pkgdir/usr/lib/gcc/$CHOST/${pkgver}/{libcaf_single,libgfortranbegin}.a
2013-02-18 05:44:57 +00:00
rm -f -r $pkgdir/usr/lib/go
2013-04-15 04:26:00 +00:00
rm -f $pkgdir/usr/share/info/{gccgo,gfortran,libgomp,libquadmath,libitm}.info
rm -f $pkgdir/usr/share/locale/{de,fr}/LC_MESSAGES/libstdc++.mo
2013-02-18 05:44:57 +00:00
rm -f $pkgdir/usr/share/man/man1/{gccgo,gfortran}.1
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
2013-04-04 15:40:31 +00:00
install -Dm644 ${srcdir}/${_basedir}/COPYING.RUNTIME \
2010-07-13 12:29:35 +00:00
${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
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
2012-05-13 23:37:54 +00:00
ln -s gfortran ${pkgdir}/usr/bin/f95
2010-07-13 12:29:35 +00:00
2013-04-04 15:40:31 +00:00
# remove files included in gcc-libs or gcc
rm -f ${pkgdir}/usr/lib/lib{gfortran,gcc_s}.so*
rm -f ${pkgdir}/usr/lib/libquadmath.{a,so*}
rm -f ${pkgdir}/usr/lib/gcc/$CHOST/${pkgver}/{*.o,libgc*}
rm -f ${pkgdir}/usr/share/info/libquadmath.info
rm -rf ${pkgdir}/usr/lib/gcc/$CHOST/${pkgver}/include
2012-12-30 02:27:26 +00:00
2010-07-13 12:29:35 +00:00
# Install Runtime Library Exception
2013-04-04 15:40:31 +00:00
install -Dm644 ${srcdir}/${_basedir}/COPYING.RUNTIME \
2010-07-13 12:29:35 +00:00
${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/
2013-04-04 15:40:31 +00:00
# remove files included in gcc-libs or gcc
rm ${pkgdir}/usr/lib/lib{gcc_s,objc}.so*
rm $pkgdir/usr/lib/gcc/$CHOST/${pkgver}/{*.o,lib*}
rm $pkgdir/usr/lib/gcc/$CHOST/${pkgver}/include/unwind.h
2010-07-13 12:29:35 +00:00
# Install Runtime Library Exception
2013-04-04 15:40:31 +00:00
install -Dm644 ${srcdir}/${_basedir}/COPYING.RUNTIME \
2010-07-13 12:29:35 +00:00
${pkgdir}/usr/share/licenses/gcc-objc/RUNTIME.LIBRARY.EXCEPTION
}
2013-02-18 05:44:57 +00:00
package_gcc-go()
{
pkgdesc="Go front-end for GCC"
depends=("gcc=$pkgver-$pkgrel")
install=gcc-go.install
cd ${srcdir}/gcc-build
make -j1 DESTDIR=$pkgdir install-target-libgo
make -j1 -C gcc DESTDIR=$pkgdir go.install-{common,man,info}
install -Dm755 gcc/go1 $pkgdir/usr/lib/gcc/$CHOST/$pkgver/go1
# Install Runtime Library Exception
2013-04-04 15:40:31 +00:00
install -Dm644 ${srcdir}/${_basedir}/COPYING.RUNTIME \
2013-02-18 05:44:57 +00:00
${pkgdir}/usr/share/licenses/gcc-go/RUNTIME.LIBRARY.EXCEPTION
}