wok view gcc/receipt @ rev 10250

Up: phpmyadmin to 3.4.1.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat May 21 02:40:09 2011 +0000 (2011-05-21)
parents 5a24b1cc7c00
children e2da6d423e51
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 $src/configure \
95 --with-local-prefix=/tools --enable-clocale=gnu \
96 --enable-shared --enable-threads=posix \
97 --enable-__cxa_atexit --enable-languages=c,c++ \
98 --disable-libstdcxx-pch --disable-multilib \
99 --disable-bootstrap --disable-libgomp \
100 --with-gmp-include=$(pwd)/gmp --with-gmp-lib=$(pwd)/gmp/.libs \
101 --without-ppl --without-cloog &&
102 make &&
103 make install
104 } || { report close-bloc; return 1; }
105 ln -s gcc /tools/bin/cc
106 report close-bloc
107 }
109 # Rules to configure and make the package.
110 compile_rules()
111 {
112 cd $src
114 # Package slitaz-toolchain use 'cook --options' when rebuilding
115 # the full SliTaz toolchain.
116 [ "$2" == "--first-pass" ] && opt=$2
117 [ "$3" == "--first-pass" ] && opt=$3
119 # Use libiberty.a from binutils.
120 sed -i 's/install_to_$(INSTALL_DEST) //' \
121 libiberty/Makefile.in || return 1
122 mkdir -p ../gcc-build && cd ../gcc-build
124 # This is the default GCC and we want a native build to cross compile after.
125 # SliTaz target i486 host so we need a native i486 build for GCC.
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 \
131 --libexecdir=/usr/lib \
132 --disable-nls \
133 --enable-shared \
134 --enable-languages=c,c++ \
135 --disable-libstdcxx-pch \
136 --enable-__cxa_atexit \
137 --enable-clocale=gnu \
138 --enable-threads=posix \
139 --disable-bootstrap \
140 --build=$HOST_SYSTEM \
141 --host=$HOST_SYSTEM &&
142 make && make install ;;
143 *)
144 # Used by default to produce a full featured X86 GCC compiler.
145 echo "cook: configure GCC for: final/full build"
146 $src/configure \
147 --libexecdir=/usr/lib \
148 --enable-nls \
149 --enable-languages=c,c++,objc,fortran \
150 --enable-shared \
151 --with-system-zlib \
152 --enable-clocale=gnu \
153 --enable-objc-gc \
154 --enable-__cxa_atexit \
155 --enable-lto \
156 --enable-threads=posix \
157 --disable-bootstrap \
158 --with-pkgversion="SliTaz" \
159 --with-tune=$ARCH \
160 --build=$HOST_SYSTEM \
161 --host=$HOST_SYSTEM &&
162 make && make install ;;
163 esac
164 }
166 # Rules to gen a SliTaz package suitable for Tazpkg.
167 genpkg_rules()
168 {
169 mkdir -p $fs/usr/share
170 cp -a $_pkg/usr/bin $fs/usr
172 # Copy all libs. Remove libgcc_s.so and libstdc++.so they goes in
173 # the gcc-lib-base package.
174 cp -a $_pkg/usr/lib $fs/usr
175 rm -f $fs/usr/lib/libgcc_s.so*
176 rm -f $fs/usr/lib/libstdc++.so*
177 rm -f $fs/usr/lib/libgomp.so*
178 rm -f $fs/usr/lib/libobjc.so*
180 # Include files.
181 cp -a $_pkg/usr/include $fs/usr
183 # Gfortran goes in gfortran package.
184 rm -f $fs/usr/bin/*gfortran
185 rm -f $fs/usr/lib/libgfortran*
186 rm -f $fs/usr/lib/gcc/*/$VERSION/libgfortran*
187 rm -rf $fs/usr/lib/gcc/*/$VERSION/f*
189 # Remove build directory.
190 rm -rf $WOK/$PACKAGE/source/$PACKAGE-build
191 rm -rf $WOK/$PACKAGE/$PACKAGE-build
192 }
194 # Post install commands for Tazpkg.
195 post_install()
196 {
197 local root
198 root=$1
199 echo "Processing post-install commands..."
200 if [ ! -f "$root/lib/cpp" ]; then
201 ln -s ../usr/bin/cpp $root/lib
202 fi
203 if [ ! -f "$root/usr/bin/cc" ]; then
204 ln -s gcc $root/usr/bin/cc
205 fi
206 }