diff options
author | Jonas Hahnfeld <hahnjo@hahnjo.de> | 2017-12-27 09:15:10 +0000 |
---|---|---|
committer | Jonas Hahnfeld <hahnjo@hahnjo.de> | 2017-12-27 09:15:10 +0000 |
commit | 2e809acd0bbb87e3e2df233e39732d9e830d568b (patch) | |
tree | 226dddade6e5fad3514833c04088e9f3230246f2 /openmp/runtime/doc/doxygen/libomp_interface.h | |
parent | cf96c876c643d4d966e0386e526899406c3c4135 (diff) | |
download | bcm5719-llvm-2e809acd0bbb87e3e2df233e39732d9e830d568b.tar.gz bcm5719-llvm-2e809acd0bbb87e3e2df233e39732d9e830d568b.zip |
Unify build documentation and convert to reStructuredText
We now have several options that apply for both libraries and they
shouldn't be documented in multiple files. When already merging
the two Build_With_CMake.txt documents, convert them to
reStructuredText which is used for all of LLVM's documentation.
Differential Revision: https://reviews.llvm.org/D40920
llvm-svn: 321481
Diffstat (limited to 'openmp/runtime/doc/doxygen/libomp_interface.h')
-rw-r--r-- | openmp/runtime/doc/doxygen/libomp_interface.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/openmp/runtime/doc/doxygen/libomp_interface.h b/openmp/runtime/doc/doxygen/libomp_interface.h index fc92d19f202..7ff28020851 100644 --- a/openmp/runtime/doc/doxygen/libomp_interface.h +++ b/openmp/runtime/doc/doxygen/libomp_interface.h @@ -30,8 +30,7 @@ has its own description. (At least, that's the ambition, we may not be there yet For the impatient, we cover building the runtime as the first topic here. CMake is used to build the OpenMP runtime. For details and a full list of options for the CMake build system, -see <tt>Build_With_CMake.txt</tt> inside the <tt>runtime/</tt> subdirectory. These -instructions will provide the most typical build. +see <tt>README.rst</tt> in the source code repository. These instructions will provide the most typical build. In-LLVM-tree build:. @code @@ -46,7 +45,7 @@ Out-of-LLVM-tree build: @code $ cd where-you-want-to-live Check out openmp -$ cd where-you-want-to-live/openmp/runtime +$ cd where-you-want-to-live/openmp $ mkdir build && cd build $ cmake path/to/openmp -DCMAKE_C_COMPILER=<C compiler> -DCMAKE_CXX_COMPILER=<C++ compiler> $ make |