diff options
author | Duncan Sands <baldrick@free.fr> | 2011-01-01 17:28:49 +0000 |
---|---|---|
committer | Duncan Sands <baldrick@free.fr> | 2011-01-01 17:28:49 +0000 |
commit | f5897f8aa096af61f8aa6590830d402b7a7eaf1d (patch) | |
tree | 8af250e4055ca1f11aae56388ca26677e0c831ca | |
parent | 92ad41f99e9a359c722bda78b3524d207134b133 (diff) | |
download | bcm5719-llvm-f5897f8aa096af61f8aa6590830d402b7a7eaf1d.tar.gz bcm5719-llvm-f5897f8aa096af61f8aa6590830d402b7a7eaf1d.zip |
I was unable to get the instructions to work if LLVM was built
using a separate objects directory.
llvm-svn: 122656
-rw-r--r-- | llvm/docs/WritingAnLLVMPass.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/docs/WritingAnLLVMPass.html b/llvm/docs/WritingAnLLVMPass.html index 14148d13b9a..ae8b8d5bfad 100644 --- a/llvm/docs/WritingAnLLVMPass.html +++ b/llvm/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/> |