[llvm] r253427 - [doc] simplify the doc on compiling CUDA
Jingyue Wu via llvm-commits
llvm-commits at lists.llvm.org
Tue Nov 17 17:59:05 PST 2015
Author: jingyue
Date: Tue Nov 17 19:59:05 2015
New Revision: 253427
URL: http://llvm.org/viewvc/llvm-project?rev=253427&view=rev
Log:
[doc] simplify the doc on compiling CUDA
CUDA support doesn't reply on temporary patches any more. Thanks Artem!
Modified:
llvm/trunk/docs/CompileCudaWithLLVM.rst
Modified: llvm/trunk/docs/CompileCudaWithLLVM.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CompileCudaWithLLVM.rst?rev=253427&r1=253426&r2=253427&view=diff
==============================================================================
--- llvm/trunk/docs/CompileCudaWithLLVM.rst (original)
+++ llvm/trunk/docs/CompileCudaWithLLVM.rst Tue Nov 17 19:59:05 2015
@@ -18,11 +18,9 @@ familiarity with CUDA. Information about
How to Build LLVM with CUDA Support
===================================
-The support for CUDA is still in progress and temporarily relies on `this patch
-<http://reviews.llvm.org/D14452>`_. Below is a quick summary of downloading and
-building LLVM with CUDA support. Consult the `Getting Started
-<http://llvm.org/docs/GettingStarted.html>`_ page for more details on setting
-up LLVM.
+Below is a quick summary of downloading and building LLVM. Consult the `Getting
+Started <http://llvm.org/docs/GettingStarted.html>`_ page for more details on
+setting up LLVM.
#. Checkout LLVM
@@ -39,27 +37,6 @@ up LLVM.
$ cd llvm/tools
$ svn co http://llvm.org/svn/llvm-project/cfe/trunk clang
-#. Apply the temporary patch for CUDA support.
-
- If you have installed `Arcanist
- <http://llvm.org/docs/Phabricator.html#requesting-a-review-via-the-command-line>`_,
- you can apply this patch using
-
- .. code-block:: console
-
- $ cd where-you-want-llvm-to-live
- $ cd llvm/tools/clang
- $ arc patch D14452
-
- Otherwise, go to `its review page <http://reviews.llvm.org/D14452>`_,
- download the raw diff, and apply it manually using
-
- .. code-block:: console
-
- $ cd where-you-want-llvm-to-live
- $ cd llvm/tools/clang
- $ patch -p0 < D14452.diff
-
#. Configure and build LLVM and Clang
.. code-block:: console
More information about the llvm-commits
mailing list