From: Chris Lattner Date: Mon, 21 Jun 2010 20:36:09 +0000 (+0000) Subject: This makes example Makefile a lot more like actual X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d47397f6dd879c8e8ea2e99b771585cd6286b64d;p=oota-llvm.git 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 --- diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html index f3e791f094b..0d4dc09d2ef 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