From bf1f62c1154756f36be765efbba057daa2ccaa5d Mon Sep 17 00:00:00 2001 From: Leonardo de Moura Date: Thu, 4 Jul 2019 10:28:51 -0700 Subject: [PATCH] chore(shell/CMakeLists): temporarily remove `--output-sync` @kha this option is only available is gnu make version >= 4.0. --- src/shell/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shell/CMakeLists.txt b/src/shell/CMakeLists.txt index 0a927af83f..31849c5c66 100644 --- a/src/shell/CMakeLists.txt +++ b/src/shell/CMakeLists.txt @@ -22,7 +22,7 @@ add_custom_target(stdlib # '-G Ninja' complains otherwise BYPRODUCTS "${CMAKE_BINARY_DIR}/stage1/libleanstdlib.a" WORKING_DIRECTORY "${LEAN_SOURCE_DIR}/../library" - COMMAND make -j8 --output-sync "${CMAKE_BINARY_DIR}/stage1/libleanstdlib.a" "LEAN=$" "LEANC_OPTS=${LEANC_OPTS}" "STAGE1_OUT=${CMAKE_BINARY_DIR}/stage1" + COMMAND make -j8 "${CMAKE_BINARY_DIR}/stage1/libleanstdlib.a" "LEAN=$" "LEANC_OPTS=${LEANC_OPTS}" "STAGE1_OUT=${CMAKE_BINARY_DIR}/stage1" DEPENDS lean_stage0) install(FILES "${CMAKE_BINARY_DIR}/stage1/libleanstdlib.a" DESTINATION lib)