Skip to content

Commit

Permalink
MacOS: Build with n+1 cpus (openzfs#22)
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Innes <andrew.c12@gmail.com>
  • Loading branch information
andrewc12 committed Nov 14, 2023
1 parent 57a596a commit 136118a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/macos-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
./configure CPPFLAGS="-I/usr/local/opt/gettext/include -I/usr/local/opt/openssl/include" LDFLAGS="-L/usr/local/opt/gettext/lib/ -L/usr/local/opt/openssl/lib"
- name: build
run: |
make -j 2
make -j $(($(sysctl -n hw.ncpu)+1))
#- name: install
# run: |
# sudo make install DESTDIR=///
Expand Down

0 comments on commit 136118a

Please sign in to comment.