aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/autogen.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/autogen.sh')
-rwxr-xr-xscripts/autogen.sh77
1 files changed, 75 insertions, 2 deletions
diff --git a/scripts/autogen.sh b/scripts/autogen.sh
index 5dfe1c6a6..f962abdbd 100755
--- a/scripts/autogen.sh
+++ b/scripts/autogen.sh
@@ -1,7 +1,7 @@
#!/bin/sh
# Run this to generate all the initial makefiles, etc.
#
-# Copyright (C) 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
+# Copyright (C) 1998, 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
#
# This file is free software; as a special exception the author gives
# unlimited permission to copy and/or distribute it, with or without
@@ -34,7 +34,7 @@ if test "$1" = "--build-w32"; then
echo "We need at least version 0.3 of MingW32/CPD" >&2
exit 1
fi
-
+g
if [ -f "$tsdir/config.log" ]; then
if ! head $tsdir/config.log | grep i386--mingw32 >/dev/null; then
echo "Pease run a 'make distclean' first" >&2
@@ -70,6 +70,79 @@ if test "$1" = "--build-w32"; then
exit $?
fi
+# This is the special case to build on a ColdFire platform under
+# the uClinux kernel. Tested on a MCF4249C3 board.
+if test "$1" = "--build-coldfire"; then
+ tmp=`dirname $0`
+ tsdir=`cd "$tmp"; cd ..; pwd`
+ shift
+ if [ $# -lt 1 ]; then
+ echo "usage: autogen.sh --build-coldfire <crossroot>" >&2
+ exit 1
+ fi
+ crossdir="$1"
+ shift
+
+ host=m68k-elf
+ crossprefix=${host}-
+ if [ ! -f $tsdir/scripts/config.guess ]; then
+ echo "$tsdir/scripts/config.guess not found" >&2
+ exit 1
+ fi
+ build=`$tsdir/scripts/config.guess`
+
+ if [ -f "$tsdir/config.log" ]; then
+ if ! head $tsdir/config.log | grep m68k-elf >/dev/null; then
+ echo "Pease run a 'make distclean' first" >&2
+ exit 1
+ fi
+ fi
+
+ crossbindir=$crossdir/bin
+ CC=${crossbindir}/${crossprefix}gcc
+ CPP=${crossbindir}/cpp
+ AR=${crossbindir}/${crossprefix}ar
+ RANLIB=${crossbindir}/${crossprefix}ranlib
+
+ CFLAGS="-Os -g -fomit-frame-pointer"
+ CFLAGS="$CFLAGS -m5307 -DCONFIG_COLDFIRE"
+ CFLAGS="$CFLAGS -Dlinux -D__linux__ -Dunix -D__uClinux__ -DEMBED"
+ CFLAGS="$CFLAGS -fno-builtin -msep-data"
+ LDFLAGS="-Wl,-elf2flt -Wl,-move-rodata"
+ LIBS="-lc"
+
+ disable_foo_tests=""
+ if [ -n "$lib_config_files" ]; then
+ for i in $lib_config_files; do
+ j=`echo $i | tr '[a-z-]' '[A-Z_]'`
+ eval "$j=${crossbindir}/$i"
+ export $j
+ disable_foo_tests="$disable_foo_tests --disable-`echo $i| \
+ sed 's,-config$,,'`-test"
+ if [ ! -f "${crossbindir}/$i" ]; then
+ echo "$i not installed for ColdFire" >&2
+ DIE=yes
+ fi
+ done
+ fi
+ [ $DIE = yes ] && exit 1
+
+ $tsdir/configure --build=${build} --host=${host} \
+ ${disable_foo_tests} \
+ --disable-dynload \
+ --disable-exec \
+ --disable-photo-viewers \
+ --disable-keyserver-helpers \
+ --disable-ldap \
+ --disable-mailto \
+ --disable-largefile \
+ --disable-asm \
+ --disable-nls $* \
+ CC="$CC" CPP="$CPP" AR="$AR" RANLIB="$RANLIB" \
+ CFLAGS="$CFLAGS" LDFLAGS="$LDFLAGS" LIBS="$LIBS"
+ exit $?
+fi
+
if (autoconf --version) < /dev/null > /dev/null 2>&1 ; then