Diff for /gforth/configure.in between versions 1.183 and 1.184

version 1.183, 2007/04/15 20:33:46 version 1.184, 2007/04/22 20:06:25
Line 116  else Line 116  else
   GCC_PATH=$(which $CC)    GCC_PATH=$(which $CC)
   LIB_PATH=${GCC_PATH%/*/*}    LIB_PATH=${GCC_PATH%/*/*}
   GCC_LD="\$(LD)"    GCC_LD="\$(LD)"
   plattform=${withval}    platform=${withval}
 fi])  fi])
   
 #variables mentioned in INSTALL  #variables mentioned in INSTALL
Line 201  case "$host_cpu" in Line 201  case "$host_cpu" in
         arm*)          arm*)
                 machine=arm                  machine=arm
                 CFLAGS="$CFLAGS -fomit-frame-pointer"                  CFLAGS="$CFLAGS -fomit-frame-pointer"
                 if test x$plattform = xnxt; then                  if test x$platform = xnxt; then
                    CFLAGS="$CFLAGS -mthumb -mthumb-interwork"                     CFLAGS="$CFLAGS -mthumb -mthumb-interwork"
                 fi                  fi
                 if test -z $arm_cacheflush; then                  if test -z $arm_cacheflush; then
Line 306  case "$host_cpu" in Line 306  case "$host_cpu" in
 esac  esac
 AC_SUBST(host)  AC_SUBST(host)
   
 echo "Check for arch/$machine/$plattform/gforth.ld ($EC_MODE)"  MAKEINC=""
   
   echo "Check for arch/$machine/$platform/gforth.ld ($EC_MODE)"
 if test x$EC_MODE = xtrue  if test x$EC_MODE = xtrue
 then  then
         echo "Check for arch/$machine/$plattform/gforth.ld"          echo "Check for arch/$machine/$platform/gforth.ld"
         if test -f arch/$machine/$plattform/gforth.ld          if test -f arch/$machine/$platform/gforth.ld
         then          then
                 LDFLAGS="-T ../arch/$machine/$plattform/gforth.ld -Map \$@.map -cref --gc-sections $LDFLAGS"                  LDFLAGS="-T ../arch/$machine/$platform/gforth.ld -Map \$@.map -cref --gc-sections $LDFLAGS"
                 if test x$plattform = xnxt; then                  if test x$platform = xnxt; then
                         LIBS="$LIB_PATH/lib/gcc/arm-elf/$($CC --version | grep GCC | cut -d' ' -f3)/interwork/libgcc.a $LIB_PATH/arm-elf/lib/interwork/libc.a $LIBS"                          LIBS="$LIB_PATH/lib/gcc/arm-elf/$($CC --version | grep GCC | cut -d' ' -f3)/interwork/libgcc.a $LIB_PATH/arm-elf/lib/interwork/libc.a $LIBS"
                 fi                  fi
         fi          fi
           if test -f arch/$machine/$platform/make.inc
           then
                   MAKEINC="include ../arch/$machine/$platform/make.inc"
           fi
 fi  fi
   AC_SUBST(MAKEINC)
   
 test x$STACK_CACHE_DEFAULT_FAST = x && STACK_CACHE_DEFAULT_FAST=1  test x$STACK_CACHE_DEFAULT_FAST = x && STACK_CACHE_DEFAULT_FAST=1
 AC_DEFINE_UNQUOTED(STACK_CACHE_DEFAULT_FAST, $STACK_CACHE_DEFAULT_FAST,  AC_DEFINE_UNQUOTED(STACK_CACHE_DEFAULT_FAST, $STACK_CACHE_DEFAULT_FAST,

Removed from v.1.183  
changed lines
  Added in v.1.184


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>