diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2006-11-08 19:26:43 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2006-11-08 19:26:43 +0000 |
commit | 292f8e2328d56d163f5a2fc7f07f348ccd6bb1ae (patch) | |
tree | d3e1fb321ea4bfdf39a153d7f482e22aaa0fd65d /newlib/libc/machine/bfin/configure.in | |
parent | 2fd2ddf3f5bacc7cccc9ac2d32b8024125808b6e (diff) | |
download | cygnal-292f8e2328d56d163f5a2fc7f07f348ccd6bb1ae.tar.gz cygnal-292f8e2328d56d163f5a2fc7f07f348ccd6bb1ae.tar.bz2 cygnal-292f8e2328d56d163f5a2fc7f07f348ccd6bb1ae.zip |
2006-11-08 Jie Zhang <jzhang918@gmail.com>
* configure.host: Add support for bfin.
* libc/include/machine/ieeefp.h: Define __IEEE_LITTLE_ENDIAN for bfin.
* libc/include/machine/setjmp.h: Define _JBLEN for bfin.
* libc/machine/bfin/aclocal.m4: Generate.
* libc/machine/bfin/configure.in: New.
* libc/machine/bfin/configure: Generate.
* libc/machine/bfin/Makefile.am: New.
* libc/machine/bfin/Makefile.in: Generate.
* libc/machine/bfin/setjmp.S: New.
* libc/machine/bfin/longjmp.S: New.
* libc/machine/configure.in: Add bfin support.
* libc/machine/configure: Generate.
Diffstat (limited to 'newlib/libc/machine/bfin/configure.in')
-rw-r--r-- | newlib/libc/machine/bfin/configure.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/newlib/libc/machine/bfin/configure.in b/newlib/libc/machine/bfin/configure.in new file mode 100644 index 000000000..0eb8a450a --- /dev/null +++ b/newlib/libc/machine/bfin/configure.in @@ -0,0 +1,14 @@ +dnl This is the newlib/libc/machine/bfin configure.in file. +dnl Process this file with autoconf to produce a configure script. + +AC_PREREQ(2.59) +AC_INIT([newlib],[NEWLIB_VERSION]) +AC_CONFIG_SRCDIR([Makefile.am]) + +dnl Can't be done in NEWLIB_CONFIGURE because that confuses automake. +AC_CONFIG_AUX_DIR(../../../..) + +NEWLIB_CONFIGURE(../../..) + +AC_CONFIG_FILES([Makefile]) +AC_OUTPUT |