X-Git-Url: http://git.tdb.fi/?p=builder.git;a=blobdiff_plain;f=bootstrap.sh;h=f198f6f6ad5526b5045c654e5319a4f05922ce8d;hp=93ee706b1ccf47772d4e6af96005f735a7f06a16;hb=6382743d26f8d5bb10a53cb907659bee6614b549;hpb=291455f435a4319ce3460e2e47d8f036222a3f92 diff --git a/bootstrap.sh b/bootstrap.sh index 93ee706..f198f6f 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,31 +1,135 @@ #!/bin/sh +# $Id$ -REQUIRED="misc core parser path regex++ getopt++" -CFLAGS="-Iinclude `pkg-config --cflags sigc++-2.0`" +set -e + +INCLUDEDIR=temp/bootstrap/include +REQUIRED="core datafile" +CFLAGS="-I$INCLUDEDIR `pkg-config --cflags sigc++-2.0`" LIBS="`pkg-config --libs sigc++-2.0` -lpthread" -if [ -z "$LIBPATH" ]; then - LIBPATH=`pwd`/.. +MACHINE="`uname -m`" +SYSTEM="`uname -s`" +if [ "$MACHINE" = "x86_64" ]; then + MULTIARCH="x86_64-linux-gnu" +else + MULTIARCH="i386-linux-gnu" +fi +if [ "$SYSTEM" = "Darwin" -o "$SYSTEM" = "FreeBSD" ]; then + if which clang++ >/dev/null; then + COMPILER="clang++" + else + COMPILER="g++" + fi +else + COMPILER="g++" +fi +if [ -e /usr/lib/libdl.so -o -e /usr/lib/$MULTIARCH/libdl.so ]; then + LIBS="$LIBS -ldl" fi -mkdir -p include/msp +while [ "$1" ]; do + case $1 in + --libpath) + shift + LIBPATH="$1" + ;; + --libpath=*) + LIBPATH="${1#--libpath=}" + ;; + --prefix) + shift + PREFIX="$1" + ;; + --prefix=*) + PREFIX="${1#--prefix=}" + ;; + --keep-temp) + KEEP_TEMP=yes + ;; + --compiler) + shift + COMPILER="$1" + CUSTOM_COMPILER=yes + ;; + --compiler=*) + COMPILER="${1#--compiler=}" + CUSTOM_COMPILER=yes + ;; + --debug) + DEBUG=-g + ;; + *) + echo "Unknown option $1" + exit 1 + ;; + esac + shift +done + +if [ -z "$LIBPATH" -o "${LIBPATH%%/*}" ]; then + LIBPATH=`pwd`/${LIBPATH:-..} +fi + +rm -rf "$INCLUDEDIR" +mkdir -p "$INCLUDEDIR/msp" sources=source/*.cpp +missing="" for i in $REQUIRED; do - path=$LIBPATH/$i - if [ ! -e $path ]; then - echo $i missing - exit 1 - fi - if [ $i = "core" ]; then - ln -sf $path/source/core include/msp/core - ln -sf $path/source/time include/msp/time - elif [ $i = "misc" ]; then - ln -sf $path/source/*.h include/msp + path=`ls -1d $LIBPATH/*$i* 2>/dev/null | head -n1` + if [ -z "$path" -o ! -d "$path/source" ]; then + missing="$missing msp$i" else - ln -sf $path/source include/msp/$i + headers=`find $path/source \( -name windows -prune \) -o \( -name '*.h' -print \)` + for j in $headers; do + rel=${j#$path/source/} + comp=${rel%%/*} + if [ "$comp" = "$rel" ]; then + comp=$i + fi + mkdir -p "$INCLUDEDIR/msp/$comp" + ln -sf $j "$INCLUDEDIR/msp/$comp/" + done + sources="$sources `find $path/source \( -name windows -prune \) -o \( -name '*.cpp' -print \)`" + fi +done + +if [ ! -z "$missing" ]; then + echo "The following libraries were not found:$missing" + echo "I looked for them in $LIBPATH" + echo "If they are somewhere else, please add --libpath=PATH to the command line." + exit 1 +fi + +echo "Compiling builder-stage1. This may take several minutes." +objects="" +for i in $sources; do + obj=`mktemp temp/bootstrap/XXXXXX` + mv $obj $obj.o + obj=$obj.o + dir=${i%/*} + dir=${dir%/unix} + flags="$CFLAGS" + if [ -d "$dir/unix" ]; then + flags="$flags -iquote $dir -iquote $dir/unix" fi - sources="$sources `find $path/source -name '*.cpp'`" + $COMPILER -c $DEBUG $i -o $obj $flags + objects="$objects $obj" done +$COMPILER $objects -o builder-stage1 $LIBS + +if [ "$KEEP_TEMP" != "yes" ]; then + echo "Cleaning up" + rm -r temp/bootstrap +fi -g++ $sources -o builder-stage1 $CFLAGS $LIBS +echo "Using builder-stage1 to compile builder." +ARGS= +if [ "$PREFIX" ]; then + ARGS="$ARGS --prefix='$PREFIX'" +fi +if [ "$CUSTOM_COMPILER" = "yes" ]; then + ARGS="$ARGS CXX=$COMPILER" +fi +eval "./builder-stage1 $ARGS"