diff options
author | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-04-01 19:14:48 +0000 |
---|---|---|
committer | jsm28 <jsm28@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-04-01 19:14:48 +0000 |
commit | 76c190166a038baa2a619e0c7384a97c41fd672e (patch) | |
tree | 268879f23a8df44e79f5ff7c7d0ffce1f108add2 | |
parent | 7d9e1f9b7ab24db102198fcf8158a4c34c634e45 (diff) | |
download | gcc-76c190166a038baa2a619e0c7384a97c41fd672e.tar.gz |
* configure.ac (avr-*-*): Add comment about why libssp is disabled.
(microblaze*): Don't disable libssp.
* configure: Regenerate.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@171848 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | configure.ac | 4 |
3 files changed, 8 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog index 2af6c0d8a93..1952f6288d0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2011-04-01 Joseph Myers <joseph@codesourcery.com> + * configure.ac (avr-*-*): Add comment about why libssp is disabled. + (microblaze*): Don't disable libssp. + * configure: Regenerate. + +2011-04-01 Joseph Myers <joseph@codesourcery.com> + * configure.ac: Remove code setting CONFIG_SHELL, config_shell and moveifchange. * configure: Regenerate. diff --git a/configure b/configure index fea4aa70e09..7042d248327 100755 --- a/configure +++ b/configure @@ -3036,14 +3036,12 @@ fi # Disable libssp for some systems. case "${target}" in avr-*-*) + # No hosted I/O support. noconfigdirs="$noconfigdirs target-libssp" ;; powerpc-*-aix* | rs6000-*-aix*) noconfigdirs="$noconfigdirs target-libssp" ;; - microblaze*) - noconfigdirs="$noconfigdirs target-libssp" - ;; esac # Disable target libiberty for some systems. diff --git a/configure.ac b/configure.ac index 2564ce5ad34..e6e91254c41 100644 --- a/configure.ac +++ b/configure.ac @@ -483,14 +483,12 @@ fi # Disable libssp for some systems. case "${target}" in avr-*-*) + # No hosted I/O support. noconfigdirs="$noconfigdirs target-libssp" ;; powerpc-*-aix* | rs6000-*-aix*) noconfigdirs="$noconfigdirs target-libssp" ;; - microblaze*) - noconfigdirs="$noconfigdirs target-libssp" - ;; esac # Disable target libiberty for some systems. |