diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2019-10-17 09:27:09 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2019-10-17 09:27:09 +0200 |
commit | 6fba6e564487adb5b215168600539369a382d2e4 (patch) | |
tree | 88848ddb37aba1a0f8d3d2c5bf228b1821fb163c /doc | |
parent | 701ef4f4a3d02f3fccf38239a8e90f2c4161c966 (diff) |
Update Visual Studio instructions in intro
Diffstat (limited to 'doc')
-rw-r--r-- | doc/intro.cli | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/doc/intro.cli b/doc/intro.cli index e672f4d..41852a5 100644 --- a/doc/intro.cli +++ b/doc/intro.cli @@ -368,12 +368,7 @@ $ bdep init -C @clang cc config.cxx=clang++ Things will also look pretty similar if you are on Windows instead of a UNIX-like operating system. For example, to initialize our project on Windows -with Visual Studio, start the Visual Studio development command prompt and -then run: - -\N|Currently we have to run \c{build2} tools from a suitable Visual Studio -development command prompt. This requirement will likely be removed in the -future.| +with Visual Studio, start a command prompt and then run: \ > bdep init -C ..\hello-debug @debug cc ^ @@ -386,6 +381,20 @@ future.| config.cc.coptions=/O2 \ +\N|For Visual Studio, \c{build2} by default will use the latest available +version and build for the \c{x86_64} target (\c{x64} in the Microsoft's +terminology). You can, however, override these defaults by either running +from a suitable Visual Studio development command prompt or by specifying +an absolute path to \c{cl.exe} that you wish to use. For example: + +\ +> bdep init -C ..\hello-debug-32 @debug-32 cc ^ + \"config.cxx=...\VC\Tools\MSVC\14.23.28105\bin\Hostx64\x86\cl.exe\" + ... +\ + +| + \N|Besides the \c{coptions} (compile options) and \c{loptions} (link options), other commonly used \c{cc} module configuration variables are \c{poptions} (preprocess options) and \c{libs} (extra libraries to link). Here is the @@ -1841,8 +1850,7 @@ created new configuration in /tmp/tools/ $ cd tools \ -The same step on Windows using Visual Studio would look like this (again, -remember to run this from the Visual Studio development command prompt): +The same step on Windows using Visual Studio would look like this: \ $ bpkg create -d tools cc ^ |