vote up 1 vote down star

My Product is built using cygwin on Windows. but Windows Tools does not understand cygwin path like /home/lib/ How do I set those variables during runtime , like can I set environment variable

set LIB_PATH=`cygpath -w /home/lib'

Something like this.

flag

1 Answer

vote up 0 vote down check

You can do a direct translation of Cygwin to Windows readable path by prepending the path of your Cygwin installation (ie, "C:/cygwin") to the Cygwin style path. Thus, "/home/lib" would become "C:/cygwin/home/lib". In your makefile, you can have a variable to prepend to all of your paths that is an empty string on non-Windows platforms but becomes the correct Cygwin path on Windows.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.