VS2008 命令提示符 + 西格温
我使用 VS2008 命令提示符进行构建、TFS 访问等,并使用 cygwin 提示符进行 grep、vi 和类 UNIX 工具。 有什么方法可以将 vcvars32.bat 功能“导入”到 cygwin 环境中,以便我可以从 cygwin 本身调用“tfs checkout”?
I use the VS2008 command prompt for builds, TFS access etc. and the cygwin prompt for grep, vi and unix-like tools. Is there any way I can 'import' the vcvars32.bat functionality into the cygwin environment so I can call "tfs checkout" from cygwin itself?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
根据此页面,您需要:
“根据您的偏好,您可以将编译所需的变量直接添加到您的环境中,或者使用 vcvars32.bat 脚本为您设置它们。请注意,您必须从 cygwin bash shell 进行编译,要使用 vcvars32,请首先运行DOS shell,然后运行 vcvars32.bat,然后从安装 cygwin 的目录运行 cygwin.bat 您可以通过添加包含 vcvars32 的目录(位于 \Microsoft Visual Studio\VC98\bin 下)和包含 cygwin 的目录来加快速度。 .bat 到你的路径。”
According to this page you need to:
"Depending on your preference, you can either add the variables required for compilation direct to your environment, or use the vcvars32.bat script to set them for you. Note you have to compile from a cygwin bash shell, to use vcvars32, first run a DOS shell, then run vcvars32.bat, then run cygwin.bat from the directory where you installed cygwin. You can speed this up by adding the directory containgin vcvars32 (somewhere under \Microsoft Visual Studio\VC98\bin) and the directory containing cygwin.bat to your path."
witkamp的答案适用于vs2005 - 对于vs2008,使用
CALL "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\vcvarsall.bat"
witkamp's answer works for vs2005 -- for vs2008, use
CALL "C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\vcvarsall.bat"
这是我的示例 Cygwin.bat 文件,它配置 Visual Studio 并启动 mintty
Here is my sample Cygwin.bat file that configures Visual studio and starts mintty