VS2008 命令提示符 + 西格温

发布于 2024-07-05 21:36:36 字数 148 浏览 6 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

相思故 2024-07-12 21:36:36

根据此页面,您需要:

“根据您的偏好,您可以将编译所需的变量直接添加到您的环境中,或者使用 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."

枯叶蝶 2024-07-12 21:36:36

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"

送你一个梦 2024-07-12 21:36:36

这是我的示例 Cygwin.bat 文件,它配置 Visual Studio 并启动 mintty

@echo off
@REM Select the latest VS Tools
IF  EXIST %VS100COMNTOOLS% (
    CALL "%VS100COMNTOOLS%\vsvars32.bat"
    GOTO :start_term
)

IF  EXIST %VS90COMNTOOLS% (
    CALL "%VS90COMNTOOLS%\vsvars32.bat"
    GOTO :start_term
)

IF  EXIST %VS80COMNTOOLS% (
    CALL "%VS80COMNTOOLS%\vsvars32.bat"
    GOTO :start_term
)

:start_term

C:
chdir C:\cygwin\bin
START mintty.exe -i /Cygwin-Terminal.ico -

Here is my sample Cygwin.bat file that configures Visual studio and starts mintty

@echo off
@REM Select the latest VS Tools
IF  EXIST %VS100COMNTOOLS% (
    CALL "%VS100COMNTOOLS%\vsvars32.bat"
    GOTO :start_term
)

IF  EXIST %VS90COMNTOOLS% (
    CALL "%VS90COMNTOOLS%\vsvars32.bat"
    GOTO :start_term
)

IF  EXIST %VS80COMNTOOLS% (
    CALL "%VS80COMNTOOLS%\vsvars32.bat"
    GOTO :start_term
)

:start_term

C:
chdir C:\cygwin\bin
START mintty.exe -i /Cygwin-Terminal.ico -
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文