search for: llvm_include_tests

Displaying 10 results from an estimated 10 matches for "llvm_include_tests".

Did you mean: dllvm_include_tests
2012 Jun 29
3
[LLVMdev] Question for users of the CMake build system:
Do you use the LLVM_INCLUDE_TESTS setting? If so, what for? It is documented to preclude the inclusion *unittests* in the build. What it actually does in preclude *all* LLVM testing (unit and regression), but only unittests for Clang. The Clang regression tests continue to be built and run. My preference is simply to remove it...
2012 Jun 29
0
[LLVMdev] [cfe-dev] Question for users of the CMake build system:
Hi, We use CMake but don't use that setting. Cheers, James On 29 June 2012 12:40, Chandler Carruth <chandlerc at google.com> wrote: > Do you use the LLVM_INCLUDE_TESTS setting? If so, what for? > > > It is documented to preclude the inclusion *unittests* in the build. > > What it actually does in preclude *all* LLVM testing (unit and regression), > but only unittests for Clang. The Clang regression tests continue to be > built and run. > &...
2014 Dec 03
4
[LLVMdev] FAQ update and Question on minimum build
...m.org/svn/llvm-project/compiler-rt/trunk compiler-rt cd ../.. mkdir build cd build export LLVM_TARGETS_TO_BUILD="ARM" export LLVM_BUILD_TOOLS==OFF export LLVM_INCLUDE_TOOLS=OFF export LLVM_BUILD_EXAMPLES=OFF export LLVM_INCLUDE_EXAMPLES=OFF export LLVM_BUILD_TESTS=OFF export LLVM_INCLUDE_TESTS=OFF I force it to build only for ARM, No test, No Examples and I ended up with In /build Clang=9MB (Crashed building Clang) lib=1.7GB Bin=2.5GB Main /llvm=531MB In the directory where all LLVM lives including.subversion = 6.6GB I only have 7.4GB total before the OS and Applications...
2017 Nov 25
2
PSA: debuginfo-tests workflow changing slightly
...debuginfo-tests") set(LLVM_ENABLE_PROJECTS "" CACHE STRING "Semicolon-separated list 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)...
2017 Dec 06
3
PSA: debuginfo-tests workflow changing slightly
..." CACHE STRING >> "Semicolon-separated list 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 >> -...
2017 Dec 06
2
PSA: debuginfo-tests workflow changing slightly
...M_ENABLE_PROJECTS "" CACHE STRING > "Semicolon-separated list 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 > -...
2016 Mar 17
2
Building with LLVM_PARALLEL_XXX_JOBS
On Mon, Mar 14, 2016 at 5:30 PM, Chris Bieneman <cbieneman at apple.com> wrote: [ brutal-snip ] ... > [ TODO#S: Before doing a 2nd build (and in a 3rd run using more > optimized binaries) ] > > How do I anable LTO via CMAKE? > > > LLVM_ENALBLE_LTO=On > [ v4 of my build-script attached ] Hi Chris, thanks for the response! That seems to work (see below). $ cd
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
2017 Feb 11
2
Asan self host problems: Failed to deallocate
Trying to run a self host "ninja check-clang" with ASan enabled I hit a /lot/ of errors like this (strangely I hit none of these in check-llvm, only in check-clang): Any ideas? ==10525==ERROR: AddressSanitizer failed to deallocate 0x10800 (67584) bytes at address 0x631000014800 ==10525==AddressSanitizer CHECK failed:
2017 Feb 15
2
Asan self host problems: Failed to deallocate
...nux-gnu //Generate build targets for llvm documentation. LLVM_INCLUDE_DOCS:BOOL=ON //Generate build targets for the LLVM examples LLVM_INCLUDE_EXAMPLES:BOOL=ON //Include the Go bindings tests in test build targets. LLVM_INCLUDE_GO_TESTS:BOOL=OFF //Generate build targets for the LLVM unit tests. LLVM_INCLUDE_TESTS:BOOL=ON //Generate build targets for the LLVM tools. LLVM_INCLUDE_TOOLS:BOOL=ON //Generate build targets for the LLVM utils. LLVM_INCLUDE_UTILS:BOOL=ON //Doxygen-generated HTML documentation install directory LLVM_INSTALL_DOXYGEN_HTML_DIR:STRING=share/doc/llvm/doxygen-html //OCamldoc-generated...