This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: Install issue libobjc gcc 3.4.5 full version...
- From: Jonathan Wakely <jwakely dot gcc at gmail dot com>
- To: "lshy2k at juno dot com" <lshy2k at juno dot com>
- Cc: gcc-help <gcc-help at gcc dot gnu dot org>
- Date: Mon, 17 Jan 2011 09:16:46 +0000
- Subject: Re: Install issue libobjc gcc 3.4.5 full version...
- References: <20110117.022802.22449.2@webmail08.dca.untd.com>
On 17 January 2011 07:28, lshy2k@juno.com wrote:
> Hello,
> Thank you for the reply.
Please reply to the list, not just to me.
> The ./configure command was issued in variety of forms ie. host=i586-pc-linux-gnu or -pthreads or without any parameters. ?My problem is lack of familiarity with the ./config command producing error with gthread cflags or will not run libobjc ./configure.
The & has nothing to do with the configure script, it tells the shell
to run the process in the background, e.g.
sleep 5 & echo blah
this will run a "sleep 5" process in the background and immediately
run "echo blah" as a separate command
so you command is running "configure" in the background ,then trying
to run the other options as a separate command, which is totally
wrong.
Try reading the docs that come with the sources,
gcc-3.4.5/INSTALL/index.html, that will tell you how to run configure.
Or just run ./configure --help