The newlib support for Nios II ELF has just been approved and checked
in. However, there's no libgloss support; it's assumed that folks will
link with a BSP (like Altera's HAL) to provide the target-specific
startup code and I/O stubs. So, this patch adds libgloss to the
top-level noconfigdirs.
Jeff Johnston has already approved this patch for newlib. OK for gcc, too?
-Sandra
2013-05-06 Sandra Loosemore <san...@codesourcery.com>
* configure.ac (noconfigdirs [nios2-*-*]): Add target-libgloss.
* configure: Regenerated.
Index: configure
===================================================================
--- configure (revision 198662)
+++ configure (working copy)
@@ -3718,6 +3718,9 @@ case "${target}" in
mt-*-*)
noconfigdirs="$noconfigdirs sim"
;;
+ nios2-*-*)
+ noconfigdirs="$noconfigdirs target-libgloss"
+ ;;
powerpc-*-aix*)
# copied from rs6000-*-* entry
noconfigdirs="$noconfigdirs gprof"
Index: configure.ac
===================================================================
--- configure.ac (revision 198662)
+++ configure.ac (working copy)
@@ -1057,6 +1057,9 @@ case "${target}" in
mt-*-*)
noconfigdirs="$noconfigdirs sim"
;;
+ nios2-*-*)
+ noconfigdirs="$noconfigdirs target-libgloss"
+ ;;
powerpc-*-aix*)
# copied from rs6000-*-* entry
noconfigdirs="$noconfigdirs gprof"