diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2005-10-17 21:17:17 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2005-10-17 21:17:17 +0000 |
commit | 9276ec15a76f50b218d539a63c8eb5b186457421 (patch) | |
tree | b95f1d98fb8e73fe58ebdb997e5b0948d8a2d4c6 /libgloss | |
parent | a68fc753b9d123c3409518a6cc12e279407ea534 (diff) | |
download | newlib-9276ec15a76f50b218d539a63c8eb5b186457421.zip newlib-9276ec15a76f50b218d539a63c8eb5b186457421.tar.gz newlib-9276ec15a76f50b218d539a63c8eb5b186457421.tar.bz2 |
2005-10-17 Jeff Johnston <jjohnstn@redhat.com>
* arm/configure.in: Support building crt0.o when syscalls
are disabled in newlib.
* arm/configure: Regenerated.
Diffstat (limited to 'libgloss')
-rw-r--r-- | libgloss/ChangeLog | 6 | ||||
-rw-r--r-- | libgloss/arm/configure | 6 | ||||
-rw-r--r-- | libgloss/arm/configure.in | 6 |
3 files changed, 12 insertions, 6 deletions
diff --git a/libgloss/ChangeLog b/libgloss/ChangeLog index b346720..59d56f1 100644 --- a/libgloss/ChangeLog +++ b/libgloss/ChangeLog @@ -1,3 +1,9 @@ +2005-10-17 Jeff Johnston <jjohnstn@redhat.com> + + * arm/configure.in: Support building crt0.o when syscalls + are disabled in newlib. + * arm/configure: Regenerated. + 2005-10-03 James E Wilson <wilson@specifix.com> * mips/array.ld, mips/cfe.ld, mips/ddb-kseg0.ld, mips/ddb.ld, diff --git a/libgloss/arm/configure b/libgloss/arm/configure index 2103e31..4a3b4c8 100644 --- a/libgloss/arm/configure +++ b/libgloss/arm/configure @@ -537,11 +537,11 @@ else fi if test "x$newlib_may_supply_syscalls" = "xyes"; then - BUILD_CRT0_TRUE= - BUILD_CRT0_FALSE='#' -else BUILD_CRT0_TRUE='#' BUILD_CRT0_FALSE= +else + BUILD_CRT0_TRUE= + BUILD_CRT0_FALSE='#' fi if test "$srcdir" = "." ; then diff --git a/libgloss/arm/configure.in b/libgloss/arm/configure.in index d334288..64d37b6 100644 --- a/libgloss/arm/configure.in +++ b/libgloss/arm/configure.in @@ -12,11 +12,11 @@ AC_ARG_ENABLE(newlib-supplied-syscalls, esac], [newlib_may_supply_syscalls=yes])dnl if test "x$newlib_may_supply_syscalls" = "xyes"; then - BUILD_CRT0_TRUE= - BUILD_CRT0_FALSE='#' -else BUILD_CRT0_TRUE='#' BUILD_CRT0_FALSE= +else + BUILD_CRT0_TRUE= + BUILD_CRT0_FALSE='#' fi if test "$srcdir" = "." ; then |