CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
gcc: fixed typo
[ports/core-arm.git] / gcc / Pkgfile
CommitLineData
bd625380 1# Description: The GNU Compiler Collection
e4b6f718 2# URL: http://gcc.gnu.org
bd625380
VM
3# Maintainer: CRUX System Team, core-ports at crux dot nu
4# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
e4b6f718 5# Depends on: zlib libmpc
bd625380
VM
6
7name=gcc
0a901937 8version=4.8.3
e722ceaa 9release=1
e4b6f718 10source=(ftp://gcc.gnu.org/pub/gcc/releases/$name-$version/$name-$version.tar.bz2
0a901937 11 $name-nocheck-fixincludes.patch $name-$version-gnueabihf.patch)
bd625380
VM
12
13build() {
bd625380 14 patch -d $name-$version -p1 -i $SRC/$name-nocheck-fixincludes.patch
e4b6f718 15 patch -d $name-$version -p1 -i $SRC/$name-$version-gnueabihf.patch
676c65bf 16
bd625380
VM
17 mkdir build
18 cd build
e4b6f718 19
bd625380 20 ../$name-$version/configure --prefix=/usr \
91eac73a 21 --build=arm-unknown-linux-gnueabihf \
e4b6f718
VM
22 --with-abi=aapcs-linux --with-mode=arm \
23 --with-float=hard \
bd625380
VM
24 --mandir=/usr/man \
25 --libexecdir=/usr/lib \
26 --enable-languages=c,c++,objc \
27 --enable-threads=posix \
28 --enable-__cxa_atexit \
29 --enable-clocale=gnu \
30 --enable-shared \
31 --disable-nls \
32 --with-x=no \
33 --with-system-zlib \
e4b6f718 34 --with-pkgversion="CRUX-ARM"
0a901937
VM
35
36 make
bd625380
VM
37 make -j1 DESTDIR=$PKG install
38
39 mkdir $PKG/lib
40 ln -sf ../usr/bin/cpp $PKG/lib/cpp
41 ln -sf gcc $PKG/usr/bin/cc
42 ln -sf g++ $PKG/usr/bin/c++
43
e722ceaa 44 mv $PKG/usr/lib/gcc/*/$version/include-fixed/{limits.h,syslimits.h} $PKG/usr/lib/gcc/*/$version/include/
bd625380 45
0a901937 46 rm $PKG/usr/lib/libstdc++.so.6.0.19-gdb.py
e4b6f718 47 rm -r $PKG/usr/share
549aff9e 48 rm -r $PKG/usr/bin/*-linux-gnu*
e722ceaa 49 rm -r $PKG/usr/lib/gcc/*/$version/{install-tools,include-fixed}
bd625380
VM
50
51 sed -i "s|-L$SRC[^ ]* ||g" $PKG/usr/lib/{libstdc++.la,libsupc++.la}
52}