From f0b41e7750f9f16e524e35a5084ba17465db2112 Mon Sep 17 00:00:00 2001 From: Kirill Bulatov Date: Thu, 16 Feb 2023 14:25:35 +0200 Subject: [PATCH] Propose less verbose way to build neon (#3624) Closes https://github.com/neondatabase/neon/issues/3518 and might help https://github.com/neondatabase/neon/issues/3611 and the future build attempts. Propose `-s` flag in the Readme when building via `make` command, to help people to spot build errors easier. --- README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 29389e7a5d..f8bc1b7736 100644 --- a/README.md +++ b/README.md @@ -83,9 +83,10 @@ cd neon # The preferred and default is to make a debug build. This will create a # demonstrably slower build than a release build. For a release build, -# use "BUILD_TYPE=release make -j`nproc`" +# use "BUILD_TYPE=release make -j`nproc` -s" +# Remove -s for the verbose build log -make -j`nproc` +make -j`nproc` -s ``` #### Building on OSX @@ -99,9 +100,10 @@ cd neon # The preferred and default is to make a debug build. This will create a # demonstrably slower build than a release build. For a release build, -# use "BUILD_TYPE=release make -j`sysctl -n hw.logicalcpu`" +# use "BUILD_TYPE=release make -j`sysctl -n hw.logicalcpu` -s" +# Remove -s for the verbose build log -make -j`sysctl -n hw.logicalcpu` +make -j`sysctl -n hw.logicalcpu` -s ``` #### Dependency installation notes