[llvm] r249067 - Kill another reference to in-source builds
Jonathan Roelofs via llvm-commits
llvm-commits at lists.llvm.org
Thu Oct 1 13:54:00 PDT 2015
Author: jroelofs
Date: Thu Oct 1 15:53:59 2015
New Revision: 249067
URL: http://llvm.org/viewvc/llvm-project?rev=249067&view=rev
Log:
Kill another reference to in-source builds
Modified:
llvm/trunk/docs/WritingAnLLVMPass.rst
Modified: llvm/trunk/docs/WritingAnLLVMPass.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/WritingAnLLVMPass.rst?rev=249067&r1=249066&r2=249067&view=diff
==============================================================================
--- llvm/trunk/docs/WritingAnLLVMPass.rst (original)
+++ llvm/trunk/docs/WritingAnLLVMPass.rst Thu Oct 1 15:53:59 2015
@@ -47,14 +47,11 @@ source tree in the ``lib/Transforms/Hell
Setting up the build environment
--------------------------------
-.. FIXME: Why does this recommend to build in-tree?
-
-First, configure and build LLVM. This needs to be done directly inside the
-LLVM source tree rather than in a separate objects directory. Next, you need
-to create a new directory somewhere in the LLVM source base. For this example,
-we'll assume that you made ``lib/Transforms/Hello``. Finally, you must set up
-a build script (``Makefile``) that will compile the source code for the new
-pass. To do this, copy the following into ``Makefile``:
+First, configure and build LLVM. Next, you need to create a new directory
+somewhere in the LLVM source base. For this example, we'll assume that you
+made ``lib/Transforms/Hello``. Finally, you must set up a build script
+(``Makefile``) that will compile the source code for the new pass. To do this,
+copy the following into ``Makefile``:
.. code-block:: make
More information about the llvm-commits
mailing list