This is an automated email from the ASF dual-hosted git repository.

wesm pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/master by this push:
     new dcb4e76  ARROW-6479: [C++] Inline errors from externalprojects on 
failure
dcb4e76 is described below

commit dcb4e7650dd0572edd01f6a5fbb9708146a51134
Author: Benjamin Kietzman <[email protected]>
AuthorDate: Thu Apr 2 12:24:21 2020 -0500

    ARROW-6479: [C++] Inline errors from externalprojects on failure
    
    https://cmake.org/cmake/help/latest/module/ExternalProject.html
    ```
    LOG_OUTPUT_ON_FAILURE <bool>
    
        This option only has an effect if at least one of the other LOG_<step> 
options
        is enabled. If an error occurs for a step which has logging to file 
enabled, that
        step’s output will be printed to the console if LOG_OUTPUT_ON_FAILURE is
        set to true. For cases where a large amount of output is recorded, just 
the end
        of that output may be printed to the console.
    ```
    
    Closes #6813 from bkietz/6479-inline-errors-from-extern
    
    Authored-by: Benjamin Kietzman <[email protected]>
    Signed-off-by: Wes McKinney <[email protected]>
---
 cpp/cmake_modules/ThirdpartyToolchain.cmake | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/cpp/cmake_modules/ThirdpartyToolchain.cmake 
b/cpp/cmake_modules/ThirdpartyToolchain.cmake
index 931bbce..988810c 100644
--- a/cpp/cmake_modules/ThirdpartyToolchain.cmake
+++ b/cpp/cmake_modules/ThirdpartyToolchain.cmake
@@ -499,6 +499,8 @@ if(NOT ARROW_VERBOSE_THIRDPARTY_BUILD)
       LOG_INSTALL
       1
       LOG_DOWNLOAD
+      1
+      LOG_OUTPUT_ON_FAILURE
       1)
   set(Boost_DEBUG FALSE)
 else()

Reply via email to