Question about link

2008-05-15 Thread Chris Howell
I am running on Vista, and what I am doing is I open up a Dev Studio 
2008 command shell. From that command shell I launch cygwin/bash... 
Things like cl.exe are inherited from the first shell I've opened in the 
bash environment. What I want is link to be the path that is found under 
my BIN directory of my DevStudio install. However possibily because 
they're the same name when I query link, or try and use it to make a 
dll. Bash thinks I am using link to make a symbolic link as opposed to a 
dll.


Any suggestions or help would be appreciated.

Cheers
Chris Howell
Software Engineer
the PYXIS innovation inc
Kingston Ontario,
w: www.pyxisinnovation.com
p: 613-389-3430

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/



Re: Question about link

2008-05-15 Thread Igor Peshansky
On Thu, 15 May 2008, Chris Howell wrote:

 I am running on Vista, and what I am doing is I open up a Dev Studio
 2008 command shell. From that command shell I launch cygwin/bash...
 Things like cl.exe are inherited from the first shell I've opened in the
 bash environment. What I want is link to be the path that is found under
 my BIN directory of my DevStudio install. However possibily because
 they're the same name when I query link, or try and use it to make a
 dll. Bash thinks I am using link to make a symbolic link as opposed to a
 dll.

 Any suggestions or help would be appreciated.

Hmm, does

export PATH=$(dirname $(which cl.exe)):$PATH

not solve this for you?  You could also do

alias link=$(dirname $(which cl.exe))/link.exe

but that will only give you link, not link.exe (in case you care).
Igor
-- 
http://cs.nyu.edu/~pechtcha/
  |\  _,,,---,,_[EMAIL PROTECTED] | [EMAIL PROTECTED]
ZZZzz /,`.-'`'-.  ;-;;,_Igor Peshansky, Ph.D. (name changed!)
 |,4-  ) )-,_. ,\ (  `'-'   old name: Igor Pechtchanski
'---''(_/--'  `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

That which is hateful to you, do not do to your neighbor.  That is the whole
Torah; the rest is commentary.  Go and study it. -- Rabbi Hillel

--
Unsubscribe info:  http://cygwin.com/ml/#unsubscribe-simple
Problem reports:   http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ:   http://cygwin.com/faq/