Displaying 5 results from an estimated 5 matches for "d2868".
Did you mean:
2868
2014 Feb 24
2
[LLVMdev] compiler-rt CMake build
...quot;.
>
I am not convinced. Suppose LLVMConfig.cmake (which we read in standalone
compiler-rt build system) has changed.
Then we should re-run cmake for standalone compiler-rt even though none of
its cmake or source files was changed.
Could you take a look if http://llvm-reviews.chandlerc.com/D2868 looks
reasonable?
>
> -Brad
>
>
--
Alexey Samsonov, MSK
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140224/829770c2/attachment.html>
2014 Feb 24
2
[LLVMdev] compiler-rt CMake build
...uot;ninja compiler-rt" twice in the build tree, I see the following
message on the second run:
ninja: no work to do.
I've verified that compiler-rt is not rebuilt even if I change its sources.
Is it a CMake bug?
>
> > Could you take a look if http://llvm-reviews.chandlerc.com/D2868 looks
> reasonable?
>
> It looks pretty good to me. I added some inline comments.
>
> -Brad
>
>
--
Alexey Samsonov, MSK
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140224/751c32e8...
2014 Feb 24
2
[LLVMdev] compiler-rt CMake build
On Mon, Feb 24, 2014 at 6:57 PM, Brad King <brad.king at kitware.com> wrote:
> On 02/24/2014 09:44 AM, Alexey Samsonov wrote:
> > ExternalProject_Add_Step(compiler-rt force-rebuild
> > DEPENDERS build
> [snip]
> > doesn't work for Ninja.
>
> What version of CMake did you use for this test? Also 2.8.10?
>
Yes, 2.8.10.2 to be exact.
>
>
2014 Feb 21
2
[LLVMdev] compiler-rt CMake build
On Fri, Feb 21, 2014 at 7:31 PM, Brad King <brad.king at kitware.com> wrote:
> On 02/21/2014 09:49 AM, Alexey Samsonov wrote:
> > 1) Looks like "DEPENDS" option is just broken
> > I use cmake 2.8.10.2.
>
> Dependencies on normal targets were accidentally broken in 2.8.9 and
> later fixed in 2.8.11 (along with a test case to keep it working):
>
>
2014 Feb 25
2
[LLVMdev] compiler-rt CMake build
...is with CMake 'master' from
> Git:
>
Yep, I can reproduce it with latest CMake and ninja:
$ cmake --version
cmake version 3.0.20140225-gcd8c
$ ninja --version
1.4.0.git
I configure LLVM with -DLLVM_BUILD_EXTERNAL_COMPILER_RT=ON
(with applied patches http://llvm-reviews.chandlerc.com/D2868 and
http://llvm-reviews.chandlerc.com/D2874)
Then I run
$ ninja compiler-rt
twice. The first run builds the libraries, the second shows only: "ninja:
no work to do." message.
>
> git clone git://cmake.org/cmake.git CMake &&
> mkdir CMake-build &&
> cd CMa...