Am 25.05.2016 um 15:58 schrieb Phil Holmes:

Knut, did you use any options to ./configure ?  config.log should
mention how configure was called.

I use the following script to build lilypond:

RED='\033[0;31m'
NOC='\033[0m'

function doit {
  AT=`date +"%s"`
  echo -en exec $RED$1$NOC in `pwd` ...
  $1  &>> $MYROOT/buildlog
  if [ $? -ne 0 ]; then echo -n " failed";exit 1;else echo -n " succeeded";fi
  BT=`date +"%s"`
  let "CT = $BT - $AT"
  echo " after $CT seconds"
}

MAKEPAR="-j 11 CPU_COUNT=11 LANGS='de'"

echo -e "\nBuilding lilypond ... this will take some time ;-)\n"
DT=`date +"%s"`
cd /home/knut/sources/lily
export MYROOT=/home/knut/sources/lilybuilt/
rm -r $MYROOT
mkdir $MYROOT

git reset --hard  &> $MYROOT/buildlog
git clean -dfx  &>> $MYROOT/buildlog
doit "./autogen.sh --noconfigure"
mkdir build
cd build
doit "../configure --prefix=$MYROOT"
doit "make $MAKEPAR all"
doit "make $MAKEPAR install"
doit "make $MAKEPAR doc"
doit "make $MAKEPAR install-doc"


ET=`date +"%s"`
let "FT = $ET - $DT"
echo "Total lilypond build time: $FT seconds"

exit 0



_______________________________________________
lilypond-devel mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-devel

Reply via email to