EmulatorKit icon indicating copy to clipboard operation
EmulatorKit copied to clipboard

Delete gcc dependency.

Open 610t opened this issue 1 year ago • 1 comments

The system such like FreeBSD, no more use gcc as default. So the compiler must specify no gcc directly but $(CC) macro.

610t avatar Aug 01 '24 09:08 610t

This breaks all sorts of systems whose base compiler doesn't support all the GNU command lines or extensions. The Makefiles force gcc for a good reason as they do not stick to portable compiler options or features.

If you want to allow for clang then it needs to actually detect and verify if gcc is present and if not then check if clang is present.

EtchedPixels avatar Aug 02 '24 09:08 EtchedPixels