[Mockpp-commits] mockpp run-configure-ascii.sh,1.4,1.5 run-configure-unicode.sh,1.16,1.17
Brought to you by:
ewald-arnold
From: Ewald A. <ewa...@us...> - 2006-01-02 15:40:32
|
Update of /cvsroot/mockpp/mockpp In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21152 Modified Files: run-configure-ascii.sh run-configure-unicode.sh Log Message: update Index: run-configure-unicode.sh =================================================================== RCS file: /cvsroot/mockpp/mockpp/run-configure-unicode.sh,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- run-configure-unicode.sh 1 Jan 2006 19:40:35 -0000 1.16 +++ run-configure-unicode.sh 2 Jan 2006 15:40:21 -0000 1.17 @@ -2,17 +2,22 @@ MYFLAGS="-O0 -g3 -Wall -Werror" #-pedantic -if which "gcc-4.0"; then - MYCC="ccache g++-4.0"; +if which "gcc-4.0" 2>/dev/null >/dev/null; then + MYCC="g++-4.0"; else - MYCC="ccache g++"; + MYCC="g++"; fi -echo mycc: $MYCC +if which "ccache" 2>/dev/null >/dev/null; then + MYCC="ccache $MYCC"; +fi + +echo MYCC: $MYCC #OPTS="--enable-doxygen --enable-docbook" -#OPTS="$OPTS --enable-builtin-stl" # --disable-exceptions --disable-rtti +OPTS="$OPTS --enable-builtin-stl" # --disable-exceptions --disable-rtti OPTS="$OPTS --enable-debug=full" #OPTS="$OPTS --disable-builtin-cxxtest --enable-cppunit" -OPTS="$OPTS --disable-builtin-cxxtest --enable-boosttest" +#OPTS="$OPTS --disable-builtin-cxxtest --enable-boosttest" + CFLAGS="$MYFLAGS" CXXFLAGS="$MYFLAGS" CXX=$MYCC CC=$MYCC ${0%/*}/configure --enable-unicode $OPTS --prefix=/tmp/mockpp-install Index: run-configure-ascii.sh =================================================================== RCS file: /cvsroot/mockpp/mockpp/run-configure-ascii.sh,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- run-configure-ascii.sh 1 Dec 2005 18:15:08 -0000 1.4 +++ run-configure-ascii.sh 2 Jan 2006 15:40:21 -0000 1.5 @@ -1,16 +1,23 @@ #!/bin/sh MYFLAGS="-O0 -g3 -Wall -Werror" +#-pedantic -if which "gcc-4.0"; then - MYCC="ccache g++-4.0"; +if which "gcc-4.0" 2>/dev/null >/dev/null; then + MYCC="g++-4.0"; else - MYCC="ccache g++"; + MYCC="g++"; fi -echo mycc: $MYCC +if which "ccache" 2>/dev/null >/dev/null; then + MYCC="ccache $MYCC"; +fi + +echo MYCC: $MYCC #OPTS="--enable-doxygen --enable-docbook" -#OPTS="$OPTS --enable-builtin-stl --disable-rtti --disable-exceptions" -#OPTS="$OPTS --enable-debug=full" +OPTS="$OPTS --enable-builtin-stl" # --disable-exceptions --disable-rtti +OPTS="$OPTS --enable-debug=full" +#OPTS="$OPTS --disable-builtin-cxxtest --enable-cppunit" +#OPTS="$OPTS --disable-builtin-cxxtest --enable-boosttest" CFLAGS="$MYFLAGS" CXXFLAGS="$MYFLAGS" CXX=$MYCC CC=$MYCC ${0%/*}/configure $OPTS --prefix=/tmp/mockpp-install |