This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: I'm still stuck on x86-64


kenner@vlsi1.ultra.nyu.edu (Richard Kenner) writes:

> I added that, but it didn't do anything different.  And with the
> current tree (again I blew away my zlib directory in my working CVS
> and did a new update -d), I get a new error message.  Here's the full
> part of the make:
> 
> Configuring in zlib
> creating cache ./config.cache
> checking host system type... config.sub: missing argument
> Try `config.sub --help' for more information.

One possibility is that config.guess failed to return anything.  What
happens if you run
    /gcc/gcc/gcc-head/config.guess
?

Is CONFIG_SHELL set in your environment, and, if so, to what value?

What is /bin/sh on your system?  bash?  ksh?  Something else?

For more debugging, after running the top level configure, edit the
top level Makefile.  Look for the configure-zlib target.  Change the
final
	$(SHELL) $${libsrcdir}/configure \
	  $(HOST_CONFIGARGS) $${srcdiroption} \
	  || exit 1
to add -xv after $(SHELL):
	$(SHELL) -xv $${libsrcdir}/configure \
	  $(HOST_CONFIGARGS) $${srcdiroption} \
	  || exit 1

Send us the output.

Ian


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