[llvm-commits] [llvm] r106471 - /llvm/trunk/docs/WritingAnLLVMPass.html
Chris Lattner
sabre at nondot.org
Mon Jun 21 13:36:09 PDT 2010
Author: lattner
Date: Mon Jun 21 15:36:09 2010
New Revision: 106471
URL: http://llvm.org/viewvc/llvm-project?rev=106471&view=rev
Log:
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!
Modified:
llvm/trunk/docs/WritingAnLLVMPass.html
Modified: llvm/trunk/docs/WritingAnLLVMPass.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/WritingAnLLVMPass.html?rev=106471&r1=106470&r2=106471&view=diff
==============================================================================
--- llvm/trunk/docs/WritingAnLLVMPass.html (original)
+++ llvm/trunk/docs/WritingAnLLVMPass.html Mon Jun 21 15:36:09 2010
@@ -189,11 +189,6 @@
# 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>
More information about the llvm-commits
mailing list