Re: New backend
Segher Boessenkool <[email protected]> Tue, 30 Dec 2025 10:03:00 -0600
| Newsgroups | gmane.comp.gcc.help |
|---|---|
| Message-ID | <aVP3tFS0m_PP7UIB@gate> |
Hi! On Tue, Dec 30, 2025 at 01:52:09PM +0100, BERTRAND Joël via Gcc-help wrote: > As it's the first time I'm trying to add a backend, I suppose I have > done a mistake. Help will be welcome. You get the errors > genautomata: unit `m6809' is not used > genautomata: unit `m6309' is not used and that is indeed true: you have define_unit's, but nothing actually uses those units, so nthe builld system thinks that perhaps you typoed things. Either actually use the units, or remove the define_unit's (well, you probably don't really want the delete it, but you can comment it out for now?) GL;HF, Segher