diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2013-05-06 18:23:09 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2013-05-06 18:23:09 +0000 |
commit | c16862d85b48cb1e00d3b68e8781a6822716a82f (patch) | |
tree | 3f5d1ef55ef97e9f089acdf0c30b62aa99670cd0 /newlib/libc/machine/nios2/configure.in | |
parent | d81e052096a745bbe60e20a225377665abd2efdf (diff) | |
download | cygnal-c16862d85b48cb1e00d3b68e8781a6822716a82f.tar.gz cygnal-c16862d85b48cb1e00d3b68e8781a6822716a82f.tar.bz2 cygnal-c16862d85b48cb1e00d3b68e8781a6822716a82f.zip |
2013-05-06 Sandra Loosemore <sandra@codesourcery.com>
* configure.host (machine_dir, sys_dir, syscall_dir, newlib_cflags):
Add settings for nios2*.
* libc/include/machine/ieeefp.h (IEEE_BIG_ENDIAN, IEEE_LITTLE_ENDIAN):
Likewise.
* libc/include/machine/setjmp.h (JBLEN, JBTYPE): Likewise.
* libc/machine/configure.in: Add nios2 subdir.
* libc/machine/configure: Regenerated.
* libc/machine/nios2/Makefile.am: New.
* libc/machine/nios2/Makefile.in: New (autogenerated).
* libc/machine/nios2/aclocal.m4: New (copied from mips version).
* libc/machine/nios2/configure.in: New.
* libc/machine/nios2/configure: New (autogenerated).
* libc/machine/nios2/setjmp.s: New.
Diffstat (limited to 'newlib/libc/machine/nios2/configure.in')
-rw-r--r-- | newlib/libc/machine/nios2/configure.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/newlib/libc/machine/nios2/configure.in b/newlib/libc/machine/nios2/configure.in new file mode 100644 index 000000000..4d505d671 --- /dev/null +++ b/newlib/libc/machine/nios2/configure.in @@ -0,0 +1,14 @@ +dnl This is the newlib/libc/machine/nios2 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([setjmp.s]) + +dnl Can't be done in NEWLIB_CONFIGURE because that confuses automake. +AC_CONFIG_AUX_DIR(../../../..) + +NEWLIB_CONFIGURE(../../..) + +AC_CONFIG_FILES([Makefile]) +AC_OUTPUT |