문제

I need to execute Visual Studio's lib.exe from a MSYS environment, but arguments like "/WX /NOLOGO" are automatically replaced with "C:/dev/MinGW/msys/1.0/WX", for example.

How do I deactivate that behavior? I tried single/double quotes and even lib `echo /WX` ... but that doesn't solve it.

도움이 되었습니까?

해결책

Sometimes you can use -switch idiom instead of /switch, example

attrib +h -s

instead of

attrib +h /s

ref

다른 팁

Use double slashes:

lib //WX //NOLOGO
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top