From: Heiko Z. <smi...@us...> - 2011-12-05 08:36:02
|
Update of /cvsroot/devil-linux/build/scripts In directory vz-cvs-3.sog:/tmp/cvs-serv32518 Modified Files: gcc-4 gcc-pass1 gmp Log Message: dont' strip the binaries, otherwise make will insist on re-compiling pieces of gcc with the wrong (old) compiler Index: gmp =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/gmp,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- gmp 21 Nov 2011 21:17:22 -0000 1.18 +++ gmp 5 Dec 2011 08:35:59 -0000 1.19 @@ -20,7 +20,7 @@ --enable-cxx --enable-mpbsd || exit 1 make $PMAKE all || exit 1 strip_debug - + # we have to install this immediately, because this is a library and could be needed by other sources make install || exit 1 @@ -31,10 +31,9 @@ build ) ./configure --prefix=/usr --sysconfdir=/etc --localstatedir=/var --host=$CONF_HOST --build=$CONF_HOST \ --enable-cxx --enable-mpbsd || exit 1 - #make LDFLAGS="-Wl,-z,noexecstack" $PMAKE all || exit 1 make $PMAKE all || exit 1 strip_debug - + # we have to install this immediately, because this is a library and could be needed by other sources make install || exit 1 ;; Index: gcc-4 =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/gcc-4,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- gcc-4 30 Nov 2011 12:09:45 -0000 1.9 +++ gcc-4 5 Dec 2011 08:35:59 -0000 1.10 @@ -53,8 +53,6 @@ make MAKE="make $PMAKE" $PMAKE $EXTRAOPTIONS || exit 1 - strip_debug - # install it, so we use the same version everywhere make install || exit 1 Index: gcc-pass1 =================================================================== RCS file: /cvsroot/devil-linux/build/scripts/gcc-pass1,v retrieving revision 1.5 retrieving revision 1.6 diff -u -d -r1.5 -r1.6 --- gcc-pass1 30 Nov 2011 12:09:45 -0000 1.5 +++ gcc-pass1 5 Dec 2011 08:35:59 -0000 1.6 @@ -29,9 +29,8 @@ --enable-threads=posix --libexecdir=/usr/lib --enable-__cxa_atexit --enable-clocale=gnu \ --enable-languages=c,c++ --disable-nls --disable-multilib --disable-bootrap || exit 1 - make $PMAKE all || exit 1 - strip_debug - + make $PMAKE || exit 1 + # install it, so we use the same version everywhere make install || exit 1 ;; |