This is the mail archive of the crossgcc@cygnus.com mailing list for the crossgcc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: libgloss configure


		From: Dr_George_D_Detlefsen
		Subject: libgloss configure

> Has anyone succeded in getting 'libgloss' to configure and make for
> any targets ???
 
  Look at the configure.in scripts used by the other ports, I'd suggest
the m68k one or the sparc one. At the top there is a few lines of code
like:

if test "${srcdir}" = "." ; then
  if test "${with_target_subdir}" != "." ; then
    libgloss_topdir="${srcdir}/${with_multisrctop}../.."
  else
    libgloss_topdir="${srcdir}/${with_multisrctop}.."
  fi
else
  libgloss_topdir="${srcdir}/.."
fi
AC_CONFIG_AUX_DIR($libgloss_topdir)

  This is how it'll find install.sh. Where did you grab libgloss from ?
It could be out of date, as I haven't done an official net release yet.

> 'arm-bare-aout/libgloss/arm' directory fails while attempting to
> find 'install.sh' or 'install-sh'.
> 
> The same problems occurs when attempting configurations for 'm68k' and
> 'sparc' targets.

  Ah.. install.sh needs to be in the top level directory with config-ml.in
and other stuff.

	- rob -