LIJI32 / SameBoy

Game Boy and Game Boy Color emulator written in C
https://sameboy.github.io/
Other
1.58k stars 205 forks source link

Update macOS sdk in Makefile #578

Closed Buggem closed 5 months ago

Buggem commented 6 months ago

Error occured while building SameBoy:

Makefile:252: *** Could not find a macOS SDK.  Stop.

I went to line 252 in the Makefile and did some tinkering and realised that the Makefile program couldn't find the SDK because it specifically wanted version 10 and I only had 13, 13.3, 14, etc. I had to modify the number on the Makefile manually, as I am on Sonama and I cannot install the older MacOSX10.sdk file. I modified the Makefile to use MacOSX13.sdk instead, and that worked.

Buggem commented 6 months ago

See #579 for a potential fix.