From 621983efe900a59e67698307065a950bb31c8ea0 Mon Sep 17 00:00:00 2001 From: Duncan Sands Date: Sat, 1 Jan 2011 17:28:49 +0000 Subject: [PATCH] I was unable to get the instructions to work if LLVM was built using a separate objects directory. llvm-svn: 122656 --- docs/WritingAnLLVMPass.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html index 14148d13b9a..ae8b8d5bfad 100644 --- a/docs/WritingAnLLVMPass.html +++ b/docs/WritingAnLLVMPass.html @@ -178,9 +178,11 @@ source tree in the lib/Transforms/Hello directory.

-

First, you need to create a new directory somewhere in the LLVM source +

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. Next, you must set up a build script + 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: