This is the mail archive of the gcc-help@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]

RE: Add search path to the cygwin.



>"Fu, Jack" wrote:
>>
>> I tried to add path using $ $PATH=/cygnus/include:$PATH.

>From: mike corbeil ordinary user account [mailto:mcorbeil@NetRevolution.com]

>      $PATH=/cygnus/include:$PATH
>      export PATH
>
>      or
>
>      $PATH=$PATH:/cygnus/include
>      export PATH

  PMFBI, but.... surely you mean

       PATH=/cygnus/include:$PATH
       export PATH

 because if you put that first $ sign there, it expands the path, rather
than treating it as a variable name, so if (for example) your path used to
be /usr/bin:/bin, then what you've just typed to bash (after expansion) is

   /usr/bin:/bin=/cygnus/include:/usr/bin:/bin

which of course doesn't make a lot of sense to bash...

    hth,
        DaveK
-- 
 "The secret of life is honesty and fair dealing. If you can fake that,
you've got it made." -Groucho Marx

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