diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | configure | 3 | ||||
-rw-r--r-- | configure.ac | 3 |
3 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index f49f04ec398..f97126205ed 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-04-18 M R Swami Reddy <MR.Swami.Reddy@nsc.com> + + * configure.ac (cr16-*-*): Add case for cr16 target and include gdb + as nonconfigurable directories list. + * configure: Regenerate. + 2008-04-14 Ben Elliston <bje@au.ibm.com> * config.sub, config.guess: Update from upstream sources. diff --git a/configure b/configure index 0ab798c9aa5..efcf6a7ce11 100755 --- a/configure +++ b/configure @@ -2340,6 +2340,9 @@ case "${target}" in c54x*-*-* | tic54x-*-*) noconfigdirs="$noconfigdirs target-libstdc++-v3 target-libgloss ${libgcj} gcc gdb newlib" ;; + cr16-*-*) + noconfigdirs="$noconfigdirs ${libgcj} gdb" + ;; cris-*-* | crisv32-*-*) unsupported_languages="$unsupported_languages java" case "${target}" in diff --git a/configure.ac b/configure.ac index f47be29cb8c..ccb6240185b 100644 --- a/configure.ac +++ b/configure.ac @@ -602,6 +602,9 @@ case "${target}" in c54x*-*-* | tic54x-*-*) noconfigdirs="$noconfigdirs target-libstdc++-v3 target-libgloss ${libgcj} gcc gdb newlib" ;; + cr16-*-*) + noconfigdirs="$noconfigdirs ${libgcj} gdb" + ;; cris-*-* | crisv32-*-*) unsupported_languages="$unsupported_languages java" case "${target}" in |