From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrea 'Fyre Wyzard' Bocci To: Yahya Darboe , gcc@gnu.org Subject: Re: qcc configuration Date: Fri, 30 Nov 2001 16:51:00 -0000 Message-ID: <5.1.0.14.0.20011201014011.00a44760@popmail.inwind.it> References: <20011201001831.33574.qmail@web13904.mail.yahoo.com> X-SW-Source: 2001-11/msg01664.html Message-ID: <20011130165100.XUpLsaqKJNBEhnZCoks5eHnjmUn_h4-3AkulvxKMxgw@z> At 16.18 30/11/01 (GMT -0800), Yahya Darboe wrote: >"Second, when configuring a native system, either cc or gcc >must be in your path or you must set CC in your environment >before running configure. Otherwise the configuration >scripts may fail." > >Above, you mentioned that one must either have gcc in their >path or set cc in their environment, but you did not >specify how this can be accomplished. > >I have doing many things but none of them help. >Could you please, please, help to provide me with detailed >instructions of how to have these environment set properly >so I can get Gcc compiled. I assume you're using some kind of Unix, or Cygnus if running under Windows. If this is not true, this probably won't help you :-( You can see what yo path is with echo $PATH You can check that you have gcc in your path just trying to run it. If you get something like "gcc: No input files" you have it in your path If you get something like "gcc: command not found" you DON'T have it in the path. In the latter case, you can add it to your path with (if running sh / bash) PATH=$PATH:"directory where gcc is" export PATH (if running csh / tcsh) setenv PATH $PATH:"directory where gcc is" OR, you can set CC: (if running sh / bash) CC="directory where gcc is"/gcc export CC (if running csh / tcsh) setenv CC "directory where gcc is"/gcc If you use cc instead of cc, just use the above instructions substituing "cc" for "gcc" where needed. HTH fwyzard