search for: compiler_rt_build_dir

Displaying 2 results from an estimated 2 matches for "compiler_rt_build_dir".

2014 Feb 21
2
[LLVMdev] compiler-rt CMake build
...ery compiler-rt source from scratch if clang has changed). I will also try to add support for running tests in compiler-rt build tree. I think this can be achieved by smth. like: add_custom_target(check-compiler-rt COMMAND ${CMAKE_BUILD_TOOL} check-all DEPENDS compiler-rt WORKING_DIRECTORY ${COMPILER_RT_BUILD_DIR}) > -Brad > > -- Alexey Samsonov, MSK -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20140221/319edf9d/attachment.html>
2014 Feb 21
4
[LLVMdev] compiler-rt CMake build
Hi Brad, I have a few questions regarding ExternalProject_Add. For me it doesn't really work as expected. I add the following code to the tools/clang/runtime/CMakeLists.txt to configure compiler-rt as external project: ExternalProject_Add(compiler-rt #DEPENDS clang clang++ llvm-config PREFIX ${CMAKE_BINARY_DIR}/projects/compiler-rt SOURCE_DIR ${COMPILER_RT_SRC_ROOT}