Displaying 20 results from an estimated 47 matches for "add_dependencies".
2013 Oct 31
2
[LLVMdev] Why does cmake use LLVMBuild.txt to specify the LLVM-libs link order?
...PROPERTY LLVMBUILD_LIB_DEPS_LLVMipo LLVMAnalysis LLVMCore LLVMInstCombine LLVMObjCARCOpts LLVMScalarOpts LLVMSupport LLVMTarget LLVMTransformUtils LLVMVectorize LLVMipa)
The dependences set by the LLVMBuild.txt infrastructure are redundant with the
dependences specified in the CMakeLists.txt using add_dependencies as in:
add_dependencies(LLVMipo intrinsics_gen)
That also means that a conditional cmake dependence of the form:
if (WITH_POLLY AND NOT POLLY_BUILD_SHARED_LIB)
add_dependencies(LLVMipo LLVMPolly)
endif (WITH_POLLY AND NOT POLLY_BUILD_SHARED_LIB)
is not satisfied on the link command (the only...
2012 Jan 20
2
Build a ruby gem and conditionally specify dependencies
I am working on a gem that has needs to set dependencies conditionally
when the gem is installed. I''ve done some digging around
and it looks like i''m not alone in this need.
http://stackoverflow.com/questions/4596606/rubygems-how-do-i-add-platform-specific-dependency
# this is a long thread
http://www.ruby-forum.com/topic/957999
The only way I can see to add dependencies to
2005 Dec 16
7
offline copy of the api site ?
Hi,
Is there a archive off http://api.rubyonrails.org/ so that I can view it
without net access?
Kind Regards, Herbert
_______________________________________________
Rails mailing list
Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
http://lists.rubyonrails.org/mailman/listinfo/rails
2017 Mar 09
2
Use of host/target compiler when building compiler-rt
...ent.
>
>
> That said, I tried putting compiler-rt in runtimes instead of projects and
> I got a bunch of cmake errors starting with:
>
> CMake Error at
> /usr/local/google/home/blaikie/dev/llvm/build/clang/debug/split/notypes/nostandalone/lib/cmake/llvm/AddLLVM.cmake:1174
> (add_dependencies):
> The dependency target "GotsanRuntimeCheck" of target "check-runtimes"
> does
> not exist.
> Call Stack (most recent call first):
> CMakeLists.txt:110 (add_lit_target)
>
> Any ideas?
>
>
> I have never encountered that issue. It looks like...
2017 May 04
2
Problem with Polly build
...also
tried "make -j4" (that is: make all -j4) on a clean build dir which
built successfully.
Polly does depend on intrinsics_gen. The dependency is added by the
following line in polly/lib/CMakeLists.txt
if (TARGET intrinsics_gen)
# Check if we are building as part of an LLVM build
add_dependencies(PollyCore intrinsics_gen)
endif()
The artifacts Polly and LLVMPolly depend on PollyCore. If you want to
help to diagnose the problem, you could add a "message()" command to
see whether the add_dependencies above is executed. It would also be
interesting whether "make Polly -j4"...
2014 Jul 08
2
[LLVMdev] [compiler-rt] clang_rt.builtins-${arch} library on windows
...)
foreach(arch x86_64 i386 arm)
if(CAN_TARGET_${arch})
set_source_files_properties(${${arch}_SOURCES} PROPERTIES
LANGUAGE C)
add_compiler_rt_runtime(clang_rt.builtins-${arch} ${arch} STATIC
SOURCES ${${arch}_SOURCES}
CFLAGS "-std=c99")
add_dependencies(builtins clang_rt.builtins-${arch})
endif()
endforeach()
endif()
--Sumanth G
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140708/68964ba5/attachment.html>
2018 Feb 17
2
Configuring LLVM v6.0 RC2 on Windows
Hi LLVM-Devs,
When I try to configure LLVM v6.0 RC2 (SVN Rev #324869) on Windows (I
haven't yet had a chance to try on Linux), I get a series of errors such as
this:
CMake Error at cmake/modules/AddLLVM.cmake:1333 (add_dependencies):
The dependency target "(" of target "check-all" does not exist.
Call Stack (most recent call first):
CMakeLists.txt:937 (add_lit_target)
Any ideas on what might be causing this? My invocation of CMake is as
follows:
cmake -Wno-dev -G "Visual Studi...
2017 Mar 09
2
Use of host/target compiler when building compiler-rt
...ent.
>
>
> That said, I tried putting compiler-rt in runtimes instead of projects and
> I got a bunch of cmake errors starting with:
>
> CMake Error at
> /usr/local/google/home/blaikie/dev/llvm/build/clang/debug/split/notypes/nostandalone/lib/cmake/llvm/AddLLVM.cmake:1174
> (add_dependencies):
> The dependency target "GotsanRuntimeCheck" of target "check-runtimes"
> does
> not exist.
> Call Stack (most recent call first):
> CMakeLists.txt:110 (add_lit_target)
>
> Any ideas?
>
>
> I have never encountered that issue. It looks like...
2017 Mar 11
2
Use of host/target compiler when building compiler-rt
...ent.
>
>
> That said, I tried putting compiler-rt in runtimes instead of projects and
> I got a bunch of cmake errors starting with:
>
> CMake Error at
> /usr/local/google/home/blaikie/dev/llvm/build/clang/debug/split/notypes/nostandalone/lib/cmake/llvm/AddLLVM.cmake:1174
> (add_dependencies):
> The dependency target "GotsanRuntimeCheck" of target "check-runtimes"
> does
> not exist.
> Call Stack (most recent call first):
> CMakeLists.txt:110 (add_lit_target)
>
> Any ideas?
>
>
> I have never encountered that issue. It looks like...
2014 Aug 23
3
[LLVMdev] [3.5 Release] Release Candidate 3 Now Available - CMake build error
...ORTS_NO_DEPRECATED_REGISTER
[ 1498s] -- Performing Test CXX_SUPPORTS_NO_DEPRECATED_REGISTER - Success
[ 1498s] -- LLDB version: 3.5.0
[ 1498s] -- Could NOT find Doxygen (missing: DOXYGEN_EXECUTABLE)
[ 1500s] -- Configuring done
[ 1501s] CMake Warning (dev) at tools/lldb/source/CMakeLists.txt:305 (add_dependencies):
[ 1501s] Policy CMP0046 is not set: Error on non-existent dependency in
[ 1501s] add_dependencies. Run "cmake --help-policy CMP0046" for policy details.
[ 1501s] Use the cmake_policy command to set the policy and suppress this warning.
[ 1501s]
[ 1501s] The dependency target
[...
2017 Jul 20
3
FYI: Ninja-build user may use CMake-3.9
...ir targets’ dependencies to link.
With BUILD_SHARED_LIBS, compiling units don't wait for preceding shared
libs.
See also; http://bb.pgr.jp/builders/i686-mingw32-RA-on-linux
Regardless of BUILD_SHARED_LIBS, compile units in add_executable() don't
wait for preceding libraries,
but targets by add_dependencies().
It doesn't break anything in llvm tree. Assume;
add_executable(foo foo.cpp)
target_link_libraries(foo LLVMCore) # depends on intrinsics_gen
Compiling foo.cpp doesn't wait for LLVMCore, but intrinsics_gen.
Linking foo waits for LLVMCore.
I have been working for cutting dependencies...
2013 Oct 31
0
[LLVMdev] Why does cmake use LLVMBuild.txt to specify the LLVM-libs link order?
On Thu, Oct 31, 2013 at 12:17 PM, Sebastian Pop <spop at codeaurora.org> wrote:
> Is there a reason to not use the cmake add_dependencies to establish the link
> order of the LLVM libs instead of using the LLVMBuild.txt info?
Have you tried `target_link_libraries`? The new CMake book has an
example showing one static lib depending on another (page 25):
`target_link_libraries(foo bar)` where `foo` uses symbols from `bar`.
-Greg
2018 Mar 17
0
Building issue at configure step on ARM host (AddLLVM.cmake)
...-DCOMPILER_RT_BUILD_SANITIZERS=OFF
-DCOMPILER_RT_BUILD_XRAY=OFF
And I got the following error :
-- Performing Test CXX_SUPPORTS_NO_MACRO_REDEFINED - Success
-- Symbols (liblldb): exporting all symbols from the lldb namespace
-- Configuring done
CMake Error at cmake/modules/AddLLVM.cmake:1198 (add_dependencies):
The dependency target "profile" of target "check-all" does not exist.
Call Stack (most recent call first):
CMakeLists.txt:925 (add_lit_target)
CMake Error at cmake/modules/AddLLVM.cmake:1198 (add_dependencies):
The dependency target "profile" of target "check...
2013 Aug 29
2
[LLVMdev] [PATCH] cmake: BugpointPasses depends on intrinsics_gen
...eletion(-)
diff --git a/tools/bugpoint-passes/CMakeLists.txt b/tools/bugpoint-passes/CMakeLists.txt
index 05f190a..4bf57ce 100644
--- a/tools/bugpoint-passes/CMakeLists.txt
+++ b/tools/bugpoint-passes/CMakeLists.txt
@@ -6,4 +6,7 @@ add_llvm_loadable_module( BugpointPasses
TestPasses.cpp
)
-add_dependencies(BugpointPasses bugpoint)
+add_dependencies(BugpointPasses
+ bugpoint
+ intrinsics_gen
+ )
--
1.8.1.4
2013 Feb 27
1
[LLVMdev] Compilation problem when addind a library
...them away in the lib/Transforms/Obfuscation directory.
This is my Makefile:
LEVEL = ../../..
LIBRARYNAME = LLVMobfuscation
LOADABLE_MODULE = 1
BUILD_ARCHIVE = 1
include $(LEVEL)/Makefile.common
My CMakeListes.txt
add_llvm_library(LLVMobfuscation
Cgf.cpp
CgfFunction.cpp
Flattening.cpp
)
add_dependencies(LLVMobfuscation intrinsics_gen)
and my LLVMBuild.txt
[component_0]
type = Library
name = Obfuscation
parent = Transforms
library_name = Obfuscation
I added my directory and pass in the Transforms Makefile,LLVMBuild and CMakeLists, in the Transforms/IPO files and in the tools/opt files, but
I sti...
2018 Feb 18
0
Configuring LLVM v6.0 RC2 on Windows
...lvm-dev <llvm-dev at lists.llvm.org> wrote:
>
> Hi LLVM-Devs,
>
> When I try to configure LLVM v6.0 RC2 (SVN Rev #324869) on Windows (I haven’t yet had a chance to try on Linux), I get a series of errors such as this:
>
> CMake Error at cmake/modules/AddLLVM.cmake:1333 (add_dependencies):
> The dependency target "(" of target "check-all" does not exist.
> Call Stack (most recent call first):
> CMakeLists.txt:937 (add_lit_target)
>
> Any ideas on what might be causing this? My invocation of CMake is as follows:
>
> cmake -Wno...
2008 Aug 24
5
uninitialized constant "Console"
I just upgraded webgen, and it broke. Here''s what I get when I run webgen:
chadmac:thewoolleyweb.com woolley$ webgen --version
An error has occurred: uninitialized constant Console
chadmac:thewoolleyweb.com woolley$ gem list webgen
*** LOCAL GEMS ***
webgen (0.5.2, 0.4.7)
2017 May 01
2
Problem with Polly build
2017-05-01 20:16 GMT+02:00 Eugene Zelenko via llvm-dev
<llvm-dev at lists.llvm.org>:
> Hi, Hongbin!
>
> On Mon, May 1, 2017 at 11:06 AM, Hongbin Zheng <etherzhhb at gmail.com> wrote:
>> Hi Eugene,
>>
>> It is strange, I also do a clean build with CMake+make with r301734 and it
>> is ok. Could you provide more details?
>>
>> Thanks
>>
2014 Feb 25
2
[LLVMdev] compiler-rt CMake build
On Mon, Feb 24, 2014 at 8:26 PM, Brad King <brad.king at kitware.com> wrote:
> On 02/24/2014 10:02 AM, Alexey Samsonov wrote:
> > Yes, 2.8.10.2 to be exact.
>
> Well, the upstream change I made to simplify this feature in
> the future:
>
> ExternalProject: Add option to always run the build step
> http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=73e5c6ae
>
2017 Jul 20
2
FYI: Ninja-build user may use CMake-3.9
..._SHARED_LIBS, compiling units don't wait for preceding shared
>> libs.
>> See also; http://bb.pgr.jp/builders/i686-mingw32-RA-on-linux
>> Regardless of BUILD_SHARED_LIBS, compile units in add_executable() don't
>> wait for preceding libraries,
>> but targets by add_dependencies().
>>
>> It doesn't break anything in llvm tree. Assume;
>> add_executable(foo foo.cpp)
>> target_link_libraries(foo LLVMCore) # depends on intrinsics_gen
>> Compiling foo.cpp doesn't wait for LLVMCore, but intrinsics_gen.
>> Linking foo waits for LLV...