-
|
I'm wondering what steps it would take to update the gcc in the repo or even swap it out for a different compiler that already supports m68k/ppc32. It seems like most of the work is done by Elf2Mac, and then the standard library port is seperate... which makes me wonder if a fork of gcc even needs to be in the repo in the first place. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
The gcc fork contains some patches that are necessary to build classic mac software (see the README). Most of these are more relevant for 68K, but some apply to PPC. When I update to a new gcc version, my process is as follows:
I don't have the capacity to do that for every gcc release, but so far I've managed to do it 'occasionally, before the included gcc gets too old'. |
Beta Was this translation helpful? Give feedback.
The gcc fork contains some patches that are necessary to build classic mac software (see the README). Most of these are more relevant for 68K, but some apply to PPC.
When I update to a new gcc version, my process is as follows:
upstreambrachmasterand mergeupstreaminto itI don't have the capacity to do that for every gcc release, but so far I've managed to do it 'occasionally…