[docs/build] adding make -j4 as the default for make, including in the Travis/Appveyor builds, should make build times faster

This commit is contained in:
Al
2017-11-30 14:09:13 -05:00
parent 2cb0d146e5
commit f207a4680d
2 changed files with 3 additions and 3 deletions

View File

@@ -118,7 +118,7 @@ git clone https://github.com/openvenues/libpostal
cd libpostal
./bootstrap.sh
./configure --datadir=[...some dir with a few GB of space...]
make
make -j4
sudo make install
# On Linux it's probably a good idea to run
@@ -163,7 +163,7 @@ cd libpostal
cp -rf windows/* ./
./bootstrap.sh
./configure --datadir=[...some dir with a few GB of space...]
make
make -j4
make install
```
Notes: When setting the datadir, the `C:` drive would be entered as `/c`. The libpostal build script automatically add `libpostal` on the end of the path, so '/c' would become `C:\libpostal\` on Windows.