Displaying 5 results from an estimated 5 matches for "find_program".
2014 May 13
2
[LLVMdev] [PATCH] CMake add_version_info_from_vcs SVN_REPOSITORY
...C_URL} PARENT_SCOPE)
set(result "${result}-r${Project_WC_REVISION}")
endif()
endif()
elseif( EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.git )
set(result "${result}git")
- # Try to get a ref-id
- if( EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.git/svn )
- find_program(git_executable NAMES git git.exe git.cmd)
- if( git_executable )
+ find_program(git_executable NAMES git git.exe git.cmd)
+ if( git_executable )
+ # Try to get a ref-id
+ if( EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/.git/svn )
set(is_git_svn_rev_exact false)
execute...
2014 Mar 23
2
[LLVMdev] compiler-rt CMake build
...points to a directory that contains
> directory names that are meaningful to CMake, including 'bin', 'lib'
> and 'share'.
>
> If, for example, you want the path to 'llvm-config', instead of
> creating a new CMake variable, you instead write
> "find_program(LLVM_CONFIG_PATH llvm-config)". CMake will search for
> an executable named 'llvm-config' in each 'bin' directory of each path
> in CMAKE_PREFIX_PATH.
>
> In a simplest case, where there is only one dependency, using
> CMAKE_PREFIX_PATH means we do not have to s...
2014 Mar 21
2
[LLVMdev] compiler-rt CMake build
On Thu, Mar 20, 2014 at 10:12 PM, Greg Fitzgerald <garious at gmail.com> wrote:
> > ExternalProject_Add(compiler-rt ...)
>
> So that was quite the experiment. Looking at
> clang/runtime/CMakeLists.txt, I'm not seeing a lot of bang for buck
> here, and it looks like this file is prone to bit rot.
Could you please elaborate on this? In fact, I don't plan to give
2020 Jun 28
3
Introducing the binary-level coverage analysis tool bcov
...contributors over the years.. It is a
> bit
> unfortunate for LLVM that MC and LLVM*Disassembler (Machine Code, including
> assembly/disassembly libraries) cannot be easily adapted by downstream
> users..... (Well, downstream packages can use LLVM exported CMake files
> and use
> find_program(LLVM) and link against some LLVM* libraries but this may pull
> in a
> large set of dependencies)
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20200628/ce8608a3/attachment-0001.html>
2020 Jun 26
4
Introducing the binary-level coverage analysis tool bcov
## TL;DR
We introduce bcov, an open-source binary-level coverage analysis tool [1].
The details are discussed in our paper [2], which is accepted to
ESEC/FSE'20. bcov statically instruments x86-64 ELF binaries without
compiler support. It features several techniques that allow it to achieve
high performance, transparency, and flexibility.
For example, running "make