diff options
author | Aaron Ballman <aaron@aaronballman.com> | 2013-05-01 19:13:50 +0000 |
---|---|---|
committer | Aaron Ballman <aaron@aaronballman.com> | 2013-05-01 19:13:50 +0000 |
commit | c8aefe43edb490990fd1a4a2af4b6f9bc8121168 (patch) | |
tree | 1eeb200da617680a77e812e50a933fcb82994285 /llvm | |
parent | 54e39db805c2bea78b600dd56fc08c0250928cca (diff) | |
download | bcm5719-llvm-c8aefe43edb490990fd1a4a2af4b6f9bc8121168.tar.gz bcm5719-llvm-c8aefe43edb490990fd1a4a2af4b6f9bc8121168.zip |
Updating the getting started guide for Visual Studio users. Specifically, pointing out that you have to pass additional parameters to llvm-lit and explicitly specify python on the command line.
llvm-svn: 180869
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/docs/GettingStartedVS.rst | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/llvm/docs/GettingStartedVS.rst b/llvm/docs/GettingStartedVS.rst index 4c80f2c57bf..a80a9e26579 100644 --- a/llvm/docs/GettingStartedVS.rst +++ b/llvm/docs/GettingStartedVS.rst @@ -137,15 +137,18 @@ Here's the short story for getting up and running quickly with LLVM: .. code-block:: bat - C:\..\llvm> llvm-lit test + C:\..\llvm> python ..\build\bin\llvm-lit --param build_config=Win32 --param build_mode=Debug --param llvm_site_config=../build/test/lit.site.cfg test - Note that quite a few of these test will fail. + This example assumes that Python is in your PATH variable, you + have built a Win32 Debug version of llvm with a standard out of + line build. You should not see any unexpected failures, but will + see many unsupported tests and expected failures. A specific test or test directory can be run with: .. code-block:: bat - C:\..\llvm> llvm-lit test/path/to/test + C:\..\llvm> python ..\build\bin\llvm-lit --param build_config=Win32 --param build_mode=Debug --param llvm_site_config=../build/test/lit.site.cfg test/path/to/test An Example Using the LLVM Tool Chain |