Skip to content

Instantly share code, notes, and snippets.

@T1T4N
Created November 13, 2017 08:44
Show Gist options
  • Save T1T4N/659aca62328b072202e407ad52ce6db4 to your computer and use it in GitHub Desktop.
Save T1T4N/659aca62328b072202e407ad52ce6db4 to your computer and use it in GitHub Desktop.
Multithreaded make on macOS
local NUM_OF_THREADS=$(sysctl hw.ncpu | awk '{print $2}')
local MAKEOPTS="${MAKEOPTS:-} -j${NUM_OF_THREADS}"
make $MAKEOPTS clean
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment