mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-26 07:39:58 +00:00
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.
This commit is contained in:
10
README.md
10
README.md
@@ -83,9 +83,10 @@ cd neon
|
|||||||
|
|
||||||
# The preferred and default is to make a debug build. This will create a
|
# 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,
|
# 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
|
#### Building on OSX
|
||||||
@@ -99,9 +100,10 @@ cd neon
|
|||||||
|
|
||||||
# The preferred and default is to make a debug build. This will create a
|
# 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,
|
# 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
|
#### Dependency installation notes
|
||||||
|
|||||||
Reference in New Issue
Block a user