Skip to content

Commit

Permalink
ARROW-6479: [C++] Inline errors from externalprojects on failure
Browse files Browse the repository at this point in the history
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 <bengilgit@gmail.com>
Signed-off-by: Wes McKinney <wesm+git@apache.org>
  • Loading branch information
bkietz authored and wesm committed Apr 2, 2020
1 parent b684298 commit dcb4e76
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cpp/cmake_modules/ThirdpartyToolchain.cmake
Expand Up @@ -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()
Expand Down

0 comments on commit dcb4e76

Please sign in to comment.