Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2002-04-05 02:41:11 +0400
committerJeff Johnston <jjohnstn@redhat.com>2002-04-05 02:41:11 +0400
commit6e6cd5bde6164914615f5e82a1b49ed5b2c25eb9 (patch)
tree04c16a09dc72fc5f5379865a9916b2ec8c8f4616 /newlib/configure.in
parent244a8fae426a68ad51cd610cebd1361a834d676a (diff)
2002-04-04 Jeff Johnston <jjohnstn@redhat.com>
* Makefile.am: Add support for installing crt1.o if one exists. * configure.host: Specify crt1.o for linux. * configure.in: Expose CRT1 and CRT1_DIR for Makefile.am to use. * Makefile.in: Regenerated. * configure: Ditto. * libc/include/sys/unistd.h (_SC_STREAM_MAX, _SC_PRIORITY_SCHEDULING): Added for non-Cygwin, non-RTEMS configurations. * libc/sys/linux/Makefile.am: Add support for crt1 and sysconf. * libc/sys/linux/Makefile.in: Regenerated. * libc/sys/linux/crt1.c: New empty file to override one defaulted by gcc. This fixes problem with reconfiguring linux newlib build. * libc/sys/linux/sysconf.c: New file.
Diffstat (limited to 'newlib/configure.in')
-rw-r--r--newlib/configure.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/newlib/configure.in b/newlib/configure.in
index 28c290148..2e21dab22 100644
--- a/newlib/configure.in
+++ b/newlib/configure.in
@@ -48,6 +48,11 @@ fi
AC_SUBST(CRT0)
AC_SUBST(CRT0_DIR)
+CRT1=${crt1}
+CRT1_DIR=${crt1_dir}
+AC_SUBST(CRT1)
+AC_SUBST(CRT1_DIR)
+
if test -n "${libm_machine_dir}"; then
LIBM_MACHINE_OBJECTLIST=libm/machine/${libm_machine_dir}/objectlist.awk.in
fi