Commit | Line | Data |
---|---|---|
6dca1d21 JB |
1 | # Description: The GNU Compiler Collection |
2 | # URL: http://gcc.gnu.org | |
3 | # Maintainer: CRUX System Team, core-ports at crux dot nu | |
b751b192 | 4 | # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu |
747a910d | 5 | # Depends on: zlib libmpc |
6dca1d21 JB |
6 | |
7 | name=gcc | |
9aa56d1b VM |
8 | version=5.3.0 |
9 | release=1 | |
cd1d0db8 | 10 | source=(ftp://gcc.gnu.org/pub/gcc/releases/$name-$version/$name-$version.tar.bz2 |
c95d3400 | 11 | $name-nocheck-fixincludes.patch) |
6dca1d21 JB |
12 | |
13 | build() { | |
9aa56d1b | 14 | patch -d $name-$version -p1 -i $SRC/$name-nocheck-fixincludes.patch |
90f92569 | 15 | cd $name-$version |
cd1d0db8 | 16 | |
9aa56d1b | 17 | sed -i 's|REVISION|REVISION " (CRUX-ARM 64b)"|' $name/version.c |
ecd7d154 | 18 | # apply a sed substitution that will suppress the installation of libiberty.a |
90f92569 | 19 | sed 's|install_to_$(INSTALL_DEST) ||' -i libiberty/Makefile.in |
90f92569 JB |
20 | |
21 | mkdir $SRC/build | |
22 | cd $SRC/build | |
23 | ||
ecd7d154 | 24 | export CXXFLAGS="-O2 -pipe" |
90f92569 | 25 | LDFLAGS="-Wl,-rpath-link,$CROSSTOOLS/$CTARGET/lib" \ |
9be8a544 VM |
26 | ../$name-$version/configure --build=$CHOST \ |
27 | --host=$CTARGET \ | |
28 | --target=$CTARGET \ | |
90f92569 | 29 | --prefix=/usr \ |
2d0bfa97 | 30 | --mandir=/usr/man \ |
90f92569 JB |
31 | --libexecdir=/usr/lib \ |
32 | --enable-languages=c,c++ \ | |
2d0bfa97 | 33 | --disable-libstdcxx-pch \ |
90f92569 | 34 | --enable-threads=posix \ |
90f92569 JB |
35 | --enable-__cxa_atexit \ |
36 | --enable-clocale=gnu \ | |
2d0bfa97 | 37 | --enable-shared \ |
90f92569 | 38 | --disable-nls \ |
2d0bfa97 VM |
39 | --with-x=no \ |
40 | --with-system-zlib \ | |
9aa56d1b | 41 | --with-pkgversion="CRUX-ARM 64b" |
90f92569 JB |
42 | |
43 | # prevent GCC from looking in the wrong directories for headers and libraries | |
44 | sed "/^HOST_\(GMP\|PPL\|CLOOG\)\(LIBS\|INC\)/s:-[IL]/\(lib\|include\)::" -i Makefile | |
45 | ||
9aa56d1b VM |
46 | make |
47 | # prevent libtool from adding host lib paths for relink at install | |
48 | # based on patch submitted by Vincent Cadet for libtool bug #21455 | |
49 | # see https://lists.gnu.org/archive/html/bug-libtool/2015-09/msg00012.html | |
50 | for lt_file in $(find $SRC/build/$CTARGET -name libtool) ; do | |
51 | sed -i 's/\(add_dir=\"\)\$add_dir \(-L\$inst_prefix_dir\$libdir\"\)/\1\2/' $lt_file | |
52 | done | |
53 | ||
ecd7d154 | 54 | make -j1 DESTDIR=$PKG install |
90f92569 JB |
55 | |
56 | mkdir $PKG/lib | |
57 | ln -sf ../usr/bin/cpp $PKG/lib/cpp | |
58 | ln -sf gcc $PKG/usr/bin/cc | |
59 | ln -sf g++ $PKG/usr/bin/c++ | |
2d0bfa97 | 60 | |
90f92569 | 61 | mv $PKG/usr/lib/gcc/*/$version/include-fixed/{limits.h,syslimits.h} $PKG/usr/lib/gcc/*/$version/include/ |
2d0bfa97 | 62 | |
9aa56d1b | 63 | rm $PKG/usr/lib64/libstdc++.so.6.0.21-gdb.py |
2d0bfa97 VM |
64 | rm -r $PKG/usr/share |
65 | rm -r $PKG/usr/lib/gcc/*/$version/{install-tools,include-fixed} | |
90f92569 | 66 | |
9aa56d1b | 67 | sed -i "s|-L$SRC[^ ]* ||g" $PKG/usr/lib64/{libstdc++.la,libsupc++.la} |
6dca1d21 | 68 | } |