diff options
author | James Y Knight <jyknight@google.com> | 2019-01-29 16:37:27 +0000 |
---|---|---|
committer | James Y Knight <jyknight@google.com> | 2019-01-29 16:37:27 +0000 |
commit | 5d71fc5d7b5ffe2323418a09db6eddaf84d6c662 (patch) | |
tree | 3354c257cd3b01f4a1a928017e9258238311b887 /openmp | |
parent | 6409d756989033a7410c33e061debe55cfd74133 (diff) | |
download | bcm5719-llvm-5d71fc5d7b5ffe2323418a09db6eddaf84d6c662.tar.gz bcm5719-llvm-5d71fc5d7b5ffe2323418a09db6eddaf84d6c662.zip |
Adjust documentation for git migration.
This fixes most references to the paths:
llvm.org/svn/
llvm.org/git/
llvm.org/viewvc/
github.com/llvm-mirror/
github.com/llvm-project/
reviews.llvm.org/diffusion/
to instead point to https://github.com/llvm/llvm-project.
This is *not* a trivial substitution, because additionally, all the
checkout instructions had to be migrated to instruct users on how to
use the monorepo layout, setting LLVM_ENABLE_PROJECTS instead of
checking out various projects into various subdirectories.
I've attempted to not change any scripts here, only documentation. The
scripts will have to be addressed separately.
Additionally, I've deleted one document which appeared to be outdated
and unneeded:
lldb/docs/building-with-debug-llvm.txt
Differential Revision: https://reviews.llvm.org/D57330
llvm-svn: 352514
Diffstat (limited to 'openmp')
-rw-r--r-- | openmp/www/index.html | 23 |
1 files changed, 7 insertions, 16 deletions
diff --git a/openmp/www/index.html b/openmp/www/index.html index d8a257159c8..91a92ac2edb 100644 --- a/openmp/www/index.html +++ b/openmp/www/index.html @@ -25,8 +25,7 @@ <a href="http://lists.llvm.org/mailman/listinfo/openmp-dev">openmp-dev</a> <a href="http://lists.llvm.org/mailman/listinfo/openmp-commits">openmp-commits</a> <a href="http://llvm.org/bugs/">Bug Reports</a> - <a href="http://llvm.org/svn/llvm-project/openmp/trunk/">Browse SVN</a> - <a href="http://llvm.org/viewvc/llvm-project/openmp/trunk/">Browse ViewVC</a> + <a href="https://github.com/llvm/llvm-project/openmp">Browse Sources</a> </div> </div> @@ -154,30 +153,22 @@ <p>To check out the code, use:</p> <ul> - <li><code>svn co http://llvm.org/svn/llvm-project/openmp/trunk openmp</code></li> + <li><code>git clone https://github.com/llvm/llvm-project.git</code></li> </ul> - <p> - Note that for an in-tree build, you should check out openmp to llvm/projects. - </p> - <p>In-tree build:</p> <ul> - <li><code>cd where-you-want-to-live</code></li> - <li>Check out openmp into llvm/projects</li> - <li><code>cd where-you-want-to-build</code></li> + <li><code>cd llvm-project</code></li> <li><code>mkdir build && cd build</code></li> - <li><code>cmake path/to/llvm -DCMAKE_C_COMPILER=<C compiler> -DCMAKE_CXX_COMPILER=<C++ compiler></code></li> + <li><code>cmake ../llvm -DLLVM_ENABLE_PROJECTS=openmp -DCMAKE_C_COMPILER=<C compiler> -DCMAKE_CXX_COMPILER=<C++ compiler></code></li> <li><code>make omp</code></li> </ul> <p>Out-of-tree build:</p> <ul> - <li><code>cd where-you-want-to-live</code></li> - <li>Check out openmp</li> - <li><code>cd where-you-want-to-live/openmp</code></li> - <li><code>mkdir build && cd build</code></li> - <li><code>cmake path/to/openmp -DCMAKE_C_COMPILER=<C compiler> -DCMAKE_CXX_COMPILER=<C++ compiler></code></li> + <li><code>cd llvm-project</code></li> + <li><code>mkdir build-openmp && cd build-openmp</code></li> + <li><code>cmake ../openmp -DCMAKE_C_COMPILER=<C compiler> -DCMAKE_CXX_COMPILER=<C++ compiler></code></li> <li><code>make</code></li> </ul> |