view make/make.sh @ 539:d98d14707471 0.9.25-pre1

As long as there's only one target, make the "tinycc" symlink. (Need to add the host detection logic before the release.)
author Rob Landley <rob@landley.net>
date Mon, 10 Dec 2007 19:54:16 -0600
parents 0f561eea8d68
children 11d95002dfe1
line wrap: on
line source

#!/bin/bash

# Usage: ./make [ARCH]
#
# With no arguments, builds all targets.  Else build target(s) listed on
# command line.  Special target "native" builds a native compiler.

TINYCC_VERSION=0.9.25

DOLOCAL="-B. -I./include -I."

function build()
{
  source ./configure -v

  # Build tinycc with a specific architecture and search paths.

  $DEBUG $CC tcc.c -o $1-tinycc_unstripped $CFLAGS $LIBS \
    -DTINYCC_TARGET_$(echo $1 | tr a-z A-Z) \
    -DTINYCC_TARGET='"'$1'"' \
    -DTINYCC_VERSION='"'$TINYCC_VERSION'"' \
    -DTINYCC_INSTALLDIR='"'$TINYCC_INSTALLDIR'"' \
    -DCC_CRTDIR='"'$CC_CRTDIR'"' \
    -DCC_LIBPATH='"'$CC_LIBPATH'"' \
    -DCC_HEADERPATH='"'$CC_HEADERPATH'"' &&
  $DEBUG $STRIP $1-tinycc_unstripped -o $1-tinycc
  [ $? -ne 0 ] && exit 1

  # If this would be a native compiler for this host, create "tinycc" symlink
  #if [ "$1" == "$HOST" ]
  #then
    $DEBUG rm -f tinycc
    $DEBUG ln -s $1-tinycc tinycc
  #fi

  # Build libtinycc1.a

  if [ -f $1/alloca.S ]
  then
    $DEBUG mkdir -p lib/$1
    $DEBUG ./$1-tinycc $DOLOCAL -o libtinycc1-$1.o -c libtinycc1.c &&
    $DEBUG ./$1-tinycc $DOLOCAL -o alloca-$1.o -c $1/alloca.S &&
    $DEBUG ./$1-tinycc $DOLOCAL -o bound-alloca-$1.o -c $1/bound-alloca.S &&
    $DEBUG $AR rcs libtinycc-$1.a {libtinycc1,alloca,bound-alloca}-$1.o
  fi
}

# Figure out what target(s) to build for.

[ $# -ne 0 ] && TARGETS="$@"
[ "$TARGETS" == "native" ] && TARGETS="$HOST"
[ -z "$TARGETS" ] && TARGETS="i386" # arm c67 win32

# Build each architecture

for TARGET in $TARGETS
do
  build $TARGET || exit 1
done