Unverified Commit 8a987d1e authored by Paul Asmuth's avatar Paul Asmuth Committed by GitHub
Browse files

Merge pull request #266 from bisen2/master

recommend using 1/2 of cpus rather than all when building
parents c0e0c03b 0a65a3fc
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -74,7 +74,8 @@ To build clip, you need an up-to-date C++ compiler, cmake, fmtlib, libharfbuzz,
libfreetype and cairo. Run:

    $ cmake .
    $ make -j
    $ make -j $(($(nproc)/2)) # for linux users, or
    $ make -j $(($(sysctl -n hw.ncpu)/2)) # for mac users 

To install the `clip` binary into your system, run `make install`: