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: qcc configuration


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



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