Neon-readme-10.sh
· 416 B · Bash
原始檔案
# Note: The path to the neon sources can not contain a space.
git clone --recursive https://github.com/neondatabase/neon.git
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` -s"
# Remove -s for the verbose build log
make -j`sysctl -n hw.logicalcpu` -s
1 | # Note: The path to the neon sources can not contain a space. |
2 | |
3 | git clone --recursive https://github.com/neondatabase/neon.git |
4 | cd neon |
5 | |
6 | # The preferred and default is to make a debug build. This will create a |
7 | # demonstrably slower build than a release build. For a release build, |
8 | # use "BUILD_TYPE=release make -j`sysctl -n hw.logicalcpu` -s" |
9 | # Remove -s for the verbose build log |
10 | |
11 | make -j`sysctl -n hw.logicalcpu` -s |