diff options
author | Chris Lattner <sabre@nondot.org> | 2010-06-21 20:36:09 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2010-06-21 20:36:09 +0000 |
commit | 35d861dd535da3e69b9527a486b5924f27f4abbb (patch) | |
tree | 31059acf74980717600055f64fde3cc2aa56c36d /docs/WritingAnLLVMPass.html | |
parent | 66c556067bfd54eafcbc6c60120adb575b0337f6 (diff) | |
download | external_llvm-35d861dd535da3e69b9527a486b5924f27f4abbb.zip external_llvm-35d861dd535da3e69b9527a486b5924f27f4abbb.tar.gz external_llvm-35d861dd535da3e69b9527a486b5924f27f4abbb.tar.bz2 |
This makes example Makefile a lot more like actual
lib/Transforms/Hello/Makefile, and prevents a lot of errors like "Assertion
`Inserted && "Pass registered multiple times!"' failed"
Patch by Gregory Petrosyan!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106471 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/WritingAnLLVMPass.html')
-rw-r--r-- | docs/WritingAnLLVMPass.html | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html index f3e791f..0d4dc09 100644 --- a/docs/WritingAnLLVMPass.html +++ b/docs/WritingAnLLVMPass.html @@ -189,11 +189,6 @@ LIBRARYNAME = Hello # dlopen/dlsym on the resulting library. LOADABLE_MODULE = 1 -# Tell the build system which LLVM libraries your pass needs. You'll probably -# need at least LLVMSystem.a, LLVMSupport.a, LLVMCore.a but possibly several -# others too. -LLVMLIBS = LLVMCore.a LLVMSupport.a LLVMSystem.a - # Include the makefile implementation stuff include $(LEVEL)/Makefile.common </pre></div> |