Displaying 8 results from an estimated 8 matches for "llvmexternalprojectutils".
[RFC] LLVM Directory Structure Changes (was Re: [PATCH] D20992: [CMake] Add LLVM runtimes directory)
2016 Jun 09
9
[RFC] LLVM Directory Structure Changes (was Re: [PATCH] D20992: [CMake] Add LLVM runtimes directory)
...rce files will get built
> > properly, so this patch can be used for iterative development with
> > just-built tools.
> >
> > http://reviews.llvm.org/D20992 <http://reviews.llvm.org/D20992>
> >
> > Files:
> > CMakeLists.txt
> > cmake/modules/LLVMExternalProjectUtils.cmake
> > runtimes/CMakeLists.txt
> >
> > Index: runtimes/CMakeLists.txt
> > ===================================================================
> > --- /dev/null
> > +++ runtimes/CMakeLists.txt
> > @@ -0,0 +1,16 @@
> > +include(LLVMExternalProjectU...
[RFC] LLVM Directory Structure Changes (was Re: [PATCH] D20992: [CMake] Add LLVM runtimes directory)
2016 Jun 09
2
[RFC] LLVM Directory Structure Changes (was Re: [PATCH] D20992: [CMake] Add LLVM runtimes directory)
...t with
>>> > just-built tools.
>>> >
>>> > <http://reviews.llvm.org/D20992>http://reviews.llvm.org/D20992 <http://reviews.llvm.org/D20992>
>>> >
>>> > Files:
>>> > CMakeLists.txt
>>> > cmake/modules/LLVMExternalProjectUtils.cmake
>>> > runtimes/CMakeLists.txt
>>> >
>>> > Index: runtimes/CMakeLists.txt
>>> > ===================================================================
>>> > --- /dev/null
>>> > +++ runtimes/CMakeLists.txt
>>> >...
[RFC] LLVM Directory Structure Changes (was Re: [PATCH] D20992: [CMake] Add LLVM runtimes directory)
2016 Jun 10
4
[RFC] LLVM Directory Structure Changes (was Re: [PATCH] D20992: [CMake] Add LLVM runtimes directory)
...gt;>>> >
>>>>> > <http://reviews.llvm.org/D20992>http://reviews.llvm.org/D20992 <http://reviews.llvm.org/D20992>
>>>>> >
>>>>> > Files:
>>>>> > CMakeLists.txt
>>>>> > cmake/modules/LLVMExternalProjectUtils.cmake
>>>>> > runtimes/CMakeLists.txt
>>>>> >
>>>>> > Index: runtimes/CMakeLists.txt
>>>>> > ===================================================================
>>>>> > --- /dev/null
>>>>> >...
2015 Nov 16
2
LLVM Weekly - #98, Nov 16th 2015
...dress can be used to store extra metadata with these bits
being masked out before going through address translation.
[r252573](http://reviews.llvm.org/rL252573).
* The Hexagon backend now supports assembly parsing.
[r252443](http://reviews.llvm.org/rL252443).
* The CMake build system gained a new LLVMExternalProjectUtils module. As an
example, this is used with the LLVM test suite which can be set up to be
rebuilt whenever the in-tree clang or lld change. This could also be used with
compiler-rt or libcxx. [r252747](http://reviews.llvm.org/rL252747).
* An 'empty token' is now defined (written as `token emp...
2017 Nov 25
2
PSA: debuginfo-tests workflow changing slightly
...t of projects to build
(${LLVM_ALL_PROJECTS}), or \"all\".")
if( LLVM_ENABLE_PROJECTS STREQUAL "all" )
@@ -885,13 +885,16 @@ if( LLVM_INCLUDE_EXAMPLES )
endif()
if( LLVM_INCLUDE_TESTS )
- if(EXISTS ${LLVM_MAIN_SRC_DIR}/projects/test-suite AND TARGET clang)
- include(LLVMExternalProjectUtils)
- llvm_ExternalProject_Add(test-suite
${LLVM_MAIN_SRC_DIR}/projects/test-suite
- USE_TOOLCHAIN
- EXCLUDE_FROM_ALL
- NO_INSTALL
- ALWAYS_CLEAN)
+ if(TARGET clang)
+ if(EXISTS ${LLVM_MAIN_SRC_DIR}/projects/test-suite)
+ include(LLVMExternalProjectUtils)
+ llvm_Ex...
2017 Dec 06
3
PSA: debuginfo-tests workflow changing slightly
...ot;.")
>> if( LLVM_ENABLE_PROJECTS STREQUAL "all" )
>> @@ -885,13 +885,16 @@ if( LLVM_INCLUDE_EXAMPLES )
>> endif()
>>
>> if( LLVM_INCLUDE_TESTS )
>> - if(EXISTS ${LLVM_MAIN_SRC_DIR}/projects/test-suite AND TARGET clang)
>> - include(LLVMExternalProjectUtils)
>> - llvm_ExternalProject_Add(test-suite ${LLVM_MAIN_SRC_DIR}/projects/test-suite
>> - USE_TOOLCHAIN
>> - EXCLUDE_FROM_ALL
>> - NO_INSTALL
>> - ALWAYS_CLEAN)
>> + if(TARGET clang)
>> + if(EXISTS ${LLVM_MAIN_SRC_DIR}/projects/test...
2017 Dec 06
2
PSA: debuginfo-tests workflow changing slightly
...ROJECTS}), or \"all\".")
> if( LLVM_ENABLE_PROJECTS STREQUAL "all" )
> @@ -885,13 +885,16 @@ if( LLVM_INCLUDE_EXAMPLES )
> endif()
>
> if( LLVM_INCLUDE_TESTS )
> - if(EXISTS ${LLVM_MAIN_SRC_DIR}/projects/test-suite AND TARGET clang)
> - include(LLVMExternalProjectUtils)
> - llvm_ExternalProject_Add(test-suite ${LLVM_MAIN_SRC_DIR}/projects/test-suite
> - USE_TOOLCHAIN
> - EXCLUDE_FROM_ALL
> - NO_INSTALL
> - ALWAYS_CLEAN)
> + if(TARGET clang)
> + if(EXISTS ${LLVM_MAIN_SRC_DIR}/projects/test-suite)
> + include(...
2017 Nov 22
2
PSA: debuginfo-tests workflow changing slightly
I sorta enjoy debugging stuff like this, so if you don't mind, I'll dig
into it once I get a chance -- traveling so, my access is a bit sketchy
right now.
I'll see if I can grab the logs and let you know if I find anything
interesting.
On Tue, Nov 21, 2017 at 7:04 PM, Zachary Turner <zturner at google.com> wrote:
> That change was added specifically to workaround a failure