wok view gcc/receipt @ rev 9706

gcc: one more fix to remove gcc-build in genpkg_rules
author Christophe Lincoln <pankso@slitaz.org>
date Sun May 08 20:23:16 2011 +0200 (2011-05-08)
parents c882f9ebda9c
children 534b79da8611
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 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 [ "$3" == "--first-pass" ] && opt=$3
120 # Use libiberty.a from binutils.
121 sed -i 's/install_to_$(INSTALL_DEST) //' \
122 libiberty/Makefile.in || return 1
123 mkdir -p ../gcc-build && cd ../gcc-build
125 case "$opt" in
126 --first-pass)
127 # Used by slitaz-toolchain when rebuilding the full toolchain.
128 echo "cook: configure GCC for: toolchain first pass"
129 $src/configure --libexecdir=/usr/lib \
130 --disable-nls --enable-shared \
131 --enable-languages=c --disable-multilib \
132 --disable-libstdcxx-pch --enable-threads=posix &&
133 make && make install ;;
134 *)
135 # Used by default to produce a full featured GCC compiler.
136 echo "cook: configure GCC for: final/full build"
137 $src/configure --libexecdir=/usr/lib --enable-nls \
138 --enable-languages=c,c++,objc,fortran \
139 --enable-shared --with-system-zlib \
140 --enable-clocale=gnu --enable-objc-gc \
141 --enable-__cxa_atexit --enable-lto \
142 --enable-threads=posix \
143 --with-tune=$ARCH $BUILD_HOST &&
144 make && make install ;;
145 esac
146 }
148 # Rules to gen a SliTaz package suitable for Tazpkg.
149 genpkg_rules()
150 {
151 mkdir -p $fs/usr/share
152 cp -a $_pkg/usr/bin $fs/usr
154 # Copy all libs. Remove libgcc_s.so and libstdc++.so they goes in
155 # the gcc-lib-base-$VERSION package.
156 cp -a $_pkg/usr/lib $fs/usr
157 rm $fs/usr/lib/libgcc_s.so*
158 rm $fs/usr/lib/libstdc++.so*
159 rm $fs/usr/lib/libgomp.so*
161 # Include files.
162 cp -a $_pkg/usr/include $fs/usr
164 # Gfortran goes in gfortran-$VERSION package.
165 rm -f $fs/usr/bin/*gfortran
166 rm -f $fs/usr/lib/libgfortran*
167 rm -f $fs/usr/lib/gcc/*/$VERSION/libgfortran*
168 rm -rf $fs/usr/lib/gcc/*/$VERSION/f*
170 # Remove build directory.
171 rm -rf $WOK/$PACKAGE/source/$PACKAGE-build
172 rm -rf $WOK/$PACKAGE/$PACKAGE-build
173 }
175 # Post install commands for Tazpkg.
176 post_install()
177 {
178 local root
179 root=$1
180 echo "Processing post-install commands..."
181 if [ ! -f "$root/lib/cpp" ]; then
182 ln -s ../usr/bin/cpp $root/lib
183 fi
184 if [ ! -f "$root/usr/bin/cc" ]; then
185 ln -s gcc $root/usr/bin/cc
186 fi
187 }