summaryrefslogtreecommitdiff
path: root/docs/WritingAnLLVMPass.html
diff options
context:
space:
mode:
authorOscar Fuentes <ofv@wanadoo.es>2011-04-12 19:40:35 +0000
committerOscar Fuentes <ofv@wanadoo.es>2011-04-12 19:40:35 +0000
commit23ba1e4faa8317e762eb95aecd786e9600e9f834 (patch)
tree6a9e33e4ec71ed3e80c850249418bed6cb85d136 /docs/WritingAnLLVMPass.html
parentc6d8853dff22b57b81f3f0e901915965538d77d1 (diff)
downloadllvm-23ba1e4faa8317e762eb95aecd786e9600e9f834.tar.gz
llvm-23ba1e4faa8317e762eb95aecd786e9600e9f834.tar.bz2
llvm-23ba1e4faa8317e762eb95aecd786e9600e9f834.tar.xz
Document how to build a LLVM pass with CMake out of source.
Patch by arrowdodger! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@129381 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/WritingAnLLVMPass.html')
-rw-r--r--docs/WritingAnLLVMPass.html3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html
index 6d18d192e3..7e15245274 100644
--- a/docs/WritingAnLLVMPass.html
+++ b/docs/WritingAnLLVMPass.html
@@ -211,6 +211,9 @@ the <tt>opt</tt> or <tt>bugpoint</tt> tools via their <tt>-load</tt> options.
If your operating system uses a suffix other than .so (such as windows or
Mac OS/X), the appropriate extension will be used.</p>
+<p>If you are used CMake to build LLVM, see
+<a href="CMake.html#passdev">Developing an LLVM pass with CMake</a>.</p>
+
<p>Now that we have the build scripts set up, we just need to write the code for
the pass itself.</p>