Displaying 6 results from an estimated 6 matches for "only_tools".
2012 May 04
2
[LLVMdev] how compile subproject
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 th...
2012 May 04
2
[LLVMdev] how compile subproject
...Peter's suggestion on the autoconf build and it worked
fine. Perhaps try a clean build out of tree:
CMake:
mkdir my_special_build_dir
cd my_special_build_dir
cmake $PATH_TO_LLVM_SOURCE
make llc
Autotools:
mkdir my_special_build_dir
cd my_special_build_dir
$PATH_TO_LLVM_SOURCE/configure
make ONLY_TOOLS=llc
Both of these have just worked for me, so if they don't work for you
we may need more details: your platform and the files you see but
expect not to if only llc is built are the most obvious ones.
Tim.
2012 May 04
0
[LLVMdev] how compile subproject
...ooper at apple.com>
To: Tim Northover <t.p.northover at gmail.com>
Cc: Beckert Frey <beckert.frey at yahoo.com>; "llvmdev at cs.uiuc.edu" <llvmdev at cs.uiuc.edu>
Sent: Friday, May 4, 2012 2:22 PM
Subject: Re: [LLVMdev] how compile subproject
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 th...
2012 May 05
0
[LLVMdev] how compile subproject
...configure --enable-jit
make # OK, everything went fine.
cd ../lib/Transforms/InstCombine/ # Just to test
vim InstCombineCalls.cpp # added `if (0 == 1) return 0;` at getPromotedType(...)
cd ../../../build/
make ONLY_TOOLS="lli"
error:
llvm[3]: Compiling InstCombineCalls.cpp for Debug+Asserts build
/home/beckert/workspace/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp: In function ‘llvm::Type* getPromotedType(llvm::Type*)’:
/home/beckert/workspace/llvm/lib/Transforms/InstCombine/InstCombineCalls.cpp...
2012 May 04
3
[LLVMdev] how compile subproject
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>
2012 May 04
0
[LLVMdev] how compile subproject
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.