PKGBUILDs/core/gcc/PKGBUILD

249 lines
8.2 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-01-04 22:37:44 +00:00
# - specifid build host, disabled distcc, make -j1 (v5), -j2 (v7)
plugrel=1
noautobuild=1
2010-07-13 12:29:35 +00:00
pkgname=('gcc' 'gcc-libs' 'gcc-fortran' 'gcc-objc')
2012-05-13 23:37:54 +00:00
pkgver=4.7.0
pkgrel=7
_snapshot=4.7-20120505
_libstdcppmanver=20120307 # Note: check source directory name when updating this
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"
2011-12-09 20:41:44 +00:00
makedepends=('binutils>=2.22' 'libmpc' 'cloog' 'ppl')
checkdepends=('dejagnu')
2012-01-04 22:37:44 +00:00
options=('!libtool' '!emptydirs' '!distcc')
2012-05-13 23:37:54 +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
ftp://gcc.gnu.org/pub/gcc/libstdc++/doxygen/libstdc++-api.${_libstdcppmanver}.man.tar.bz2
2012-01-04 22:37:44 +00:00
gcc_pure64.patch
2012-05-13 23:37:54 +00:00
gcc-4.7.0-cloog-0.17.patch)
md5sums=('8e2df3b9a755c9262db0df019cc3542e'
'489d2f5311535800a120efd8d18db719'
'ced48436c1b3c981d721a829f1094de1'
'575f7d17b022e609447a590e481b18b5')
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
2012-02-05 22:59:17 +00:00
# compatibility with latest cloog
2012-05-13 23:37:54 +00:00
patch -p1 -i ${srcdir}/gcc-4.7.0-cloog-0.17.patch
2012-02-05 22:59:17 +00:00
2010-07-13 12:29:35 +00:00
echo ${pkgver} > gcc/BASE-VER
# ALARM: Specify build host types
2012-01-04 22:37:44 +00:00
[[ $CARCH == "arm" ]] && CONFIGFLAG="--host=arm-unknown-linux-gnueabi --build=arm-unknown-linux-gnueabi" && MAKEFLAGS="-j1"
[[ $CARCH == "armv7h" ]] && CONFIGFLAG="--host=armv7l-unknown-linux-gnueabi --build=armv7l-unknown-linux-gnueabi --with-arch=armv7-a --with-float=hard --with-fpu=vfpv3-d16" && MAKEFLAGS="-j2"
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 \
--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
2011-05-17 03:14:00 +00:00
}
check() {
cd 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-05-13 23:37:54 +00:00
depends=('glibc>=2.15')
2010-07-13 12:29:35 +00:00
install=gcc-libs.install
cd 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"
2011-12-09 20:41:44 +00:00
depends=("gcc-libs=$pkgver-$pkgrel" 'binutils>=2.22' 'libmpc' 'cloog' 'ppl')
2010-07-13 12:29:35 +00:00
groups=('base-devel')
install=gcc.install
cd 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*
2010-07-13 12:29:35 +00:00
# many packages require these symlinks
install -dm755 ${pkgdir}/lib
2012-05-13 23:37:54 +00:00
ln -s /usr/bin/cpp ${pkgdir}/lib/cpp
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-05-13 23:37:54 +00:00
install -m644 ${srcdir}/man/man3/* ${pkgdir}/usr/share/man/man3/
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
cd 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")
cd 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
}
2012-03-16 00:18:09 +00:00
md5sums=('f7ca5d9f7a07216577f81318b7cf56ef'
'450772ce32daed97d7383199f8797f33'
'4030ee1c08dd1e843c0225b772360e76'
'4df25b623799b148a0703eaeec8fdf3f'
'68b596040715d889deecfb20cabf115e')