Displaying 1 result from an estimated 1 matches for "loopmem".
2012 Jul 04
1
[LLVMdev] Correct Way to Build an LLVM Pass
...of makes sense as there is no Makefile.config in the llvm-src
directory.
So I tried to place my-pass directory inside the llvm-build/lib/Transforms
directory and run make from there. But got the following error -
make: *** No rule to make target
`/home/arnie/llvm-development/llvm/lib/Transforms/LoopMem/Makefile', needed
by `Makefile'. Stop.
However, if I configure and build the whole LLVM again (with my pass), it
is able to produce the shared library. Is it the only way to integrate my
pass into LLVM? Because, every time I modify my pass, I have to rebuilt
LLVM which takes close to ha...