Using Visual Studio's 'cl' from a normal command line

后端 未结 7 1356
生来不讨喜
生来不讨喜 2020-11-28 21:28

Visual Studio 2003 and 2005 (and perhaps 2008 for all I know) require the command line user to run in the \'Visual Studio Command Prompt\'. When starting this command promp

相关标签:
7条回答
  • 2020-11-28 21:37

    The compilers can be used from command line (or makefiles) just like any other compilers. The main things you need to take care of are the INCLUDE and LIB environment variables, and PATH. If you're running from cmd.exe, you can just run this .bat to set the environment:

    C:\Program Files\Microsoft Visual Studio 9.0\VC\vcvarsall.bat

    If you're trying to use the compilers from a makefile, Cygwin, MinGW, or something like that you need to set the environment variables manually. Assuming the compiler is installed in the default location, this should work for the Visual Studio 2008 compiler and the latest Windows SDK:

    Add to PATH:

    • C:\Program Files\Microsoft SDKs\Windows\v6.1\Bin
    • C:\Program Files\Microsoft Visual Studio 9.0\VC\Bin
    • C:\Program Files\Microsoft Visual Studio 9.0\Common7\IDE

    Add to INCLUDE:

    • C:\Program Files\Microsoft SDKs\Windows\v6.1\Include
    • C:\Program Files\Microsoft Visual Studio 9.0\VC\include
    • C:\Program Files\Microsoft Visual Studio 9.0\VC\atlmfc\include

    Add to LIB:

    • C:\Program Files\Microsoft SDKs\Windows\v6.1\Lib
    • C:\Program Files\Microsoft Visual Studio 9.0\VC\lib

    These are the bare minimum, but should be enough for basic things. Study the vcvarsall.bat script to see what more you may want to set.

    0 讨论(0)
  • 2020-11-28 21:39

    The vcvarsall.bat batch file which is run by the Visual Studio command prompt is simply trying to keep your system environment variables and paths nice and clean (and is important if you have multiple versions of Visual Studio).

    If you're happy limiting your setup to one version and having a long path and set of environment variables, transfer these settings (manually) to the System Environment Variables (My Computer|Properties --- or Win-Pause/Break).

    I'd recommend against this though!

    0 讨论(0)
  • 2020-11-28 21:42

    My version of opening the visual studio command line for Visual Studio Command Prompt in visual-studio-2010. Used internally to build a library/project and then perform some extra steps with the resulting DLL files.

    Copy these lines to your Compile and execute other steps.cmd file, or similar.

    @echo off
    
    REM Load Visual Studio's build tools
    call "%ProgramFiles(x86)%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86
    
    REM Choose what you want to do, 1 or 2 by (un)commenting
    
    REM     1. Add your cl.exe (or msbuild.exe or other) commands here
    REM msbuild.exe MyProject.csproj
    REM cl.exe
    REM custom-step.exe  %*
    REM pause
    
    REM     2. Open a normal interactive system command shell with all variables loaded
    %comspec% /k
    

    In this version of the script, I "stay" in interactive command line mode afterwards. Comment to REM %comspec% /k to only use the script for non-interactive purposes.

    0 讨论(0)
  • 2020-11-28 21:47

    What the vcvars32 or vsvars32 batch files do is not rocket science. They simply set the PATH, INCLUDE, LIB, and possibly the LIBPATH environment variables to sensible defaults for the particular compiler version.

    All you have to do is make sure that those things are set properly for your Ant or makefile (either before invoking them or within them).

    For INCLUDE and LIB/LIBPATH an alternative to setting those items in environment variables is to pass those settings to to command line as explicit parameters.

    0 讨论(0)
  • 2020-11-28 21:47

    The trick is to always use the correct vcvars batch file. IF you have just one version of VisualStudio installed, that's no big problem. If you're dealing with multiple versions like me, it becomes very easy to run a MSVC++ 14 build in a console that was set up with a MSVC++ 15 vcvars file. It might or might not work, but whatever you're getting will be different from what you'd be building from within VisualStudio.

    We have dealt with that issue in terp by deriving the proper vcvars file from the chosen compiler and always setting up the environment internally to the tool invocation. This way, you always have the right vcvars file for the compiler you're using.

    Just to reiterate: I highly recommend against trying to duplicate manually what the vcvars file does for you. You're bound to miss something or get it just right enough that it looks like it's working while actually doing something slightly different from what you wanted.

    0 讨论(0)
  • 2020-11-28 21:51

    You can simply run the batch file which sets the variables yourself. In VS08 it's located at:-

    C:\Program Files\Microsoft Visual Studio 9.0\VC\vcvarsall.bat
    
    0 讨论(0)
提交回复
热议问题