1
General Jo Engine Help / Getting Joengine to work on MacOS Ventura?
« Last post by nemesis8811 on November 11, 2022, 10:11:25 pm »Is anyone here actually using a Mac for their SS homebrew? I have spent days fiddling with the shell files to make it work and compile but alas could not do much.
My first issue was having the compilation complain about NPROC but after some research I found out how to make it Mac compliant. Basically from this:
...to this:
And now it is giving me this grief:
Any idea what I should do? I really want to start developing asap for the SS! Thank you all in advance!
My first issue was having the compilation complain about NPROC but after some research I found out how to make it Mac compliant. Basically from this:
Code: [Select]
#!/bin/bash
export NCPU=`nproc`
make clean && make -j${NCPU} all
exit 0
Code: [Select]
#!/bin/bash
export NCPU=`sysctl -n hw.ncpu`
make clean && make -j${NCPU} all
exit 0
And now it is giving me this grief:
Quote
Last login: Fri Nov 11 23:08:03 on ttys000
firstname@me-MBP ~ % /Users/firstname/Documents/Development/Sega\ Saturn/Samples/demo1/compile.sh ; exit;
make: *** No rule to make target `clean'. Stop.
Saving session...
...copying shared history...
...saving history...truncating history files...
...completed.
[Process completed]
Any idea what I should do? I really want to start developing asap for the SS! Thank you all in advance!