
configure.in within the
libgloss directory includes a
case statement configuring the target for each
target platform. This should be extended to add the new platform
directory. The OpenRISC 1000 32-bit target requires the following change.
case "${target}" in
i[[3456]]86-*-elf* | i[[3456]]86-*-coff*)
AC_CONFIG_SUBDIRS([i386])
;;
m32r-*-*)
AC_CONFIG_SUBDIRS([m32r])
;;
<Other targets not shown>
spu-*-elf)
AC_CONFIG_SUBDIRS([spu])
config_testsuite=false
config_libnosys=false
;;
or32-*-*)
AC_CONFIG_SUBDIRS(or32)
;;
iq2000-*-*)
AC_CONFIG_SUBDIRS([iq2000])
;;
esac
After making this change the configure file
should be regenerated by running autoconf.
