wok view gcc/receipt @ rev 9977

gcc: we want a i486 optimised compiler not to host optimised (tank is i686)
author Christophe Lincoln <pankso@slitaz.org>
date Wed May 18 21:15:14 2011 +0200 (2011-05-18)
parents dbc94a9c5716
children 25e9c77f611c
line source
1 # SliTaz package receipt.
3 PACKAGE="gcc"
4 VERSION="4.5.2"
5 CATEGORY="development"
6 SHORT_DESC="The the GNU Compiler Collection."
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://gcc.gnu.org/"
10 WGET_URL="ftp://gcc.gnu.org/pub/gcc/releases/gcc-$VERSION/$TARBALL"
12 # We need gawk since busybox awk is not sufficient. We have BUILD_DEPENDS
13 # for cookutils that are not used by tazwok/cook-toolchain since it install
14 # and use it's own copy.
15 DEPENDS="libgomp libobjc gcc-lib-base mpc-library elfutils"
16 BUILD_DEPENDS="elfutils mpc-library mpfr mpfr-dev gmp gmp-dev elfutils \
17 elfutils-dev gawk"
19 # Rules to compile & install the temporary toolchain.
20 precook_tmp_toolchain()
21 {
22 report open-bloc
23 cd $src
25 # GCC requires the GMP, MPFR and MPC packages.
26 tazwok get-src mpfr --target=$PWD/mpfr || { report close-bloc; return 1; }
27 tazwok get-src gmp --target=$PWD/gmp || { report close-bloc; return 1; }
28 tazwok get-src mpc-library --target=$PWD/mpc || { report close-bloc; return 1; }
30 report step "Running compilation"
32 # Build it in a separate directory.
33 mkdir ../gcc-build
34 cd ../gcc-build
36 { $src/configure \
37 --target=$BUILD_HOST \
38 --disable-nls --disable-shared --disable-multilib \
39 --disable-decimal-float --disable-threads \
40 --disable-libmudflap --disable-libssp \
41 --disable-libgomp --enable-languages=c \
42 --with-gmp-include=$(pwd)/gmp --with-gmp-lib=$(pwd)/gmp/.libs \
43 --without-ppl --without-cloog &&
44 make &&
45 make install
46 } || { report close-bloc; return 1; }
48 # See LFS for more detais about this.
49 ln -s libgcc.a `$BUILD_HOST-gcc -print-libgcc-file-name | \
50 sed 's/libgcc/&_eh/'`
51 report close-bloc
52 }
54 cook_tmp_toolchain()
55 {
56 report open-bloc
57 cd $src
58 patch -Np1 -i $stuff/gcc-$VERSION-startfiles_fix-1.patch || { report close-bloc; return 1; }
60 # Details about theses lines are in LFS book.
61 sed 's@\./fixinc\.sh@-c true@' -i gcc/Makefile.in
62 sed 's/^T_CFLAGS =$/& -fomit-frame-pointer/' -i gcc/Makefile.in
63 for file in \
64 $(find gcc/config -name linux64.h -o -name linux.h -o -name sysv4.h)
65 do
66 sed -e 's@/lib\(64\)\?\(32\)\?/ld@/tools&@g' \
67 -e 's@/usr@/tools@g' -i $file
68 echo '
69 #undef STANDARD_INCLUDE_DIR
70 #define STANDARD_INCLUDE_DIR 0
71 #define STANDARD_STARTFILE_PREFIX_1 ""
72 #define STANDARD_STARTFILE_PREFIX_2 ""' >> $file
73 done
75 if [ "$ARCH" = x86_64 ]; then
76 for file in $(find gcc/config -name t-linux64) ; do
77 sed '/MULTILIB_OSDIRNAMES/d' -i $file
78 done
79 fi
81 # GCC requires the GMP, MPFR and MPC packages.
82 tazwok get-src mpfr --target=$PWD/mpfr || { report close-bloc; return 1; }
83 tazwok get-src gmp --target=$PWD/gmp || { report close-bloc; return 1; }
84 tazwok get-src mpc-library --target=$PWD/mpc || { report close-bloc; return 1; }
86 report step "Running compilation"
88 # Build it in a separate directory.
89 mkdir ../gcc-build
90 cd ../gcc-build
92 { CC="$BUILD_HOST-gcc -B/tools/lib/" \
93 AR=$BUILD_HOST-ar RANLIB=$BUILD_HOST-ranlib \
94 # --disable-bootstrap dont exist ???
95 # See: ./configure --help | grep bootstrap
96 $src/configure \
97 --with-local-prefix=/tools --enable-clocale=gnu \
98 --enable-shared --enable-threads=posix \
99 --enable-__cxa_atexit --enable-languages=c,c++ \
100 --disable-libstdcxx-pch --disable-multilib \
101 --disable-bootstrap --disable-libgomp \
102 --with-gmp-include=$(pwd)/gmp --with-gmp-lib=$(pwd)/gmp/.libs \
103 --without-ppl --without-cloog &&
104 make &&
105 make install
106 } || { report close-bloc; return 1; }
107 ln -s gcc /tools/bin/cc
108 report close-bloc
109 }
111 # Rules to configure and make the package.
112 compile_rules()
113 {
114 cd $src
116 # Package slitaz-toolchain use 'cook --options' when rebuilding
117 # the full SliTaz toolchain.
118 [ "$2" == "--first-pass" ] && opt=$2
119 [ "$3" == "--first-pass" ] && opt=$3
121 # Use libiberty.a from binutils.
122 sed -i 's/install_to_$(INSTALL_DEST) //' \
123 libiberty/Makefile.in || return 1
124 mkdir -p ../gcc-build && cd ../gcc-build
126 case "$opt" in
127 --first-pass)
128 # Used by slitaz-toolchain when rebuilding the full toolchain.
129 echo "cook: configure GCC for: toolchain first pass"
130 $src/configure --libexecdir=/usr/lib \
131 --disable-nls --enable-shared \
132 --enable-languages=c,c++ --disable-multilib \
133 --disable-libstdcxx-pch --enable-__cxa_atexit \
134 --enable-clocale=gnu --enable-threads=posix &&
135 make && make install ;;
136 *)
137 # Used by default to produce a full featured GCC compiler.
138 echo "cook: configure GCC for: final/full build"
139 $src/configure --libexecdir=/usr/lib --enable-nls \
140 --enable-languages=c,c++,objc,fortran \
141 --enable-shared --with-system-zlib \
142 --enable-clocale=gnu --enable-objc-gc \
143 --enable-__cxa_atexit --enable-lto \
144 --enable-threads=posix --with-tune=$ARCH \
145 $ARCH-pc-linux-gnu &&
146 make && make install ;;
147 esac
148 }
150 # Rules to gen a SliTaz package suitable for Tazpkg.
151 genpkg_rules()
152 {
153 mkdir -p $fs/usr/share
154 cp -a $_pkg/usr/bin $fs/usr
156 # Copy all libs. Remove libgcc_s.so and libstdc++.so they goes in
157 # the gcc-lib-base-$VERSION package.
158 cp -a $_pkg/usr/lib $fs/usr
159 rm $fs/usr/lib/libgcc_s.so*
160 rm $fs/usr/lib/libstdc++.so*
161 rm $fs/usr/lib/libgomp.so*
162 rm $fs/usr/lib/libobjc.so*
164 # Include files.
165 cp -a $_pkg/usr/include $fs/usr
167 # Gfortran goes in gfortran-$VERSION package.
168 rm -f $fs/usr/bin/*gfortran
169 rm -f $fs/usr/lib/libgfortran*
170 rm -f $fs/usr/lib/gcc/*/$VERSION/libgfortran*
171 rm -rf $fs/usr/lib/gcc/*/$VERSION/f*
173 # Remove build directory.
174 rm -rf $WOK/$PACKAGE/source/$PACKAGE-build
175 rm -rf $WOK/$PACKAGE/$PACKAGE-build
176 }
178 # Post install commands for Tazpkg.
179 post_install()
180 {
181 local root
182 root=$1
183 echo "Processing post-install commands..."
184 if [ ! -f "$root/lib/cpp" ]; then
185 ln -s ../usr/bin/cpp $root/lib
186 fi
187 if [ ! -f "$root/usr/bin/cc" ]; then
188 ln -s gcc $root/usr/bin/cc
189 fi
190 }