autc04 / Retro68

a gcc-based cross-compiler for classic 68K and PPC Macintoshes
GNU General Public License v3.0
555 stars 54 forks source link

"Change BUILD_JOBS=8" to match the threads on the computer itself. #264

Closed IoIxD closed 3 months ago

IoIxD commented 3 months ago

Because I wasted two hours today compiling this on the only Mac I have access to - one with a dual core i3 - before remembering that the build script has the build jobs set to 8, which makes the process worse then if i'd just used one core. I finished it in 30 minutes by switching it to what is shown below.

This patch accommodates Mac, Linux, and the people emulating Linux under Windows.

IoIxD commented 3 months ago

After making this I looked at my own commit and realized it was right above something that was supposed to do this on Linux. But this actually isn't good either (it doesn't use nproc, and also on Mac it just doesn't exist) so I'll remove that.

autc04 commented 3 months ago

Nice, thanks!