summaryrefslogtreecommitdiff
path: root/docs/WritingAnLLVMPass.html
diff options
context:
space:
mode:
authorDuncan Sands <baldrick@free.fr>2011-01-01 17:28:49 +0000
committerDuncan Sands <baldrick@free.fr>2011-01-01 17:28:49 +0000
commitdc97c0b2c755b54edff6b439dc1d658c6da7e586 (patch)
tree2a13b4534949c6a88a7add6f620ee758a5316748 /docs/WritingAnLLVMPass.html
parent779ff7fd822c5473a7d5dfd5304c81c7398563b3 (diff)
downloadllvm-dc97c0b2c755b54edff6b439dc1d658c6da7e586.tar.gz
llvm-dc97c0b2c755b54edff6b439dc1d658c6da7e586.tar.bz2
llvm-dc97c0b2c755b54edff6b439dc1d658c6da7e586.tar.xz
I was unable to get the instructions to work if LLVM was built
using a separate objects directory. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@122656 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/WritingAnLLVMPass.html')
-rw-r--r--docs/WritingAnLLVMPass.html6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html
index 14148d13b9..ae8b8d5bfa 100644
--- a/docs/WritingAnLLVMPass.html
+++ b/docs/WritingAnLLVMPass.html
@@ -178,9 +178,11 @@ source tree in the <tt>lib/Transforms/Hello</tt> directory.</p>
<div class="doc_text">
- <p>First, you need to create a new directory somewhere in the LLVM source
+ <p>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
- <tt>lib/Transforms/Hello</tt>. Next, you must set up a build script
+ <tt>lib/Transforms/Hello</tt>. 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 <tt>Makefile</tt>:</p>
<hr/>