Hello, is it possible to compile just an subproject? For example, just llc or lli? Cheers. Beckert. -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20120503/c20aa7b1/attachment.html>
Hi Beckert,> is it possible to compile just an subproject? For example, just llc or lli?With CMake you can just type "make llc" from your build directory. I don't know about the autotools build. Tim.
You can also do make ONLY_TOOLS="llc" Pete On May 3, 2012, at 11:52 PM, Tim Northover wrote:> Hi Beckert, > >> is it possible to compile just an subproject? For example, just llc or lli? > > With CMake you can just type "make llc" from your build directory. I > don't know about the autotools build. > > Tim. > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev
On Thu, May 03, 2012 at 22:34:32 -0700, Beckert Frey wrote:> is it possible to compile just an subproject? For example, just llc or lli?When I only change something in code generation, I use a command like this: make -C $builddir/lib/CodeGen/ && make install -C $builddir/tools/llc/ -- Gergö Barany, research assistant gergo at complang.tuwien.ac.at Institute of Computer Languages http://www.complang.tuwien.ac.at/gergo/ Vienna University of Technology Tel: +43-1-58801-58522 Argentinierstrasse 8/E185, 1040 Wien, Austria Fax: +43-1-58801-18598