This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: I'm still stuck on x86-64
- From: Ian Lance Taylor <ian at wasabisystems dot com>
- To: kenner at vlsi1 dot ultra dot nyu dot edu (Richard Kenner)
- Cc: aj at suse dot de, gcc at gcc dot gnu dot org
- Date: 23 Jan 2004 13:30:03 -0500
- Subject: Re: I'm still stuck on x86-64
- References: <10401231259.AA00237@vlsi1.ultra.nyu.edu>
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