Path: csiph.com!weretis.net!feeder9.news.weretis.net!news.quux.org!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail From: Tim Rentsch Newsgroups: comp.lang.c Subject: Re: question about linker Date: Wed, 04 Dec 2024 08:04:59 -0800 Organization: A noiseless patient Spider Lines: 12 Message-ID: <86ed2nmo2c.fsf@linuxsc.com> References: <87mshhsrr0.fsf@nosuchdomain.example.com> <8734j9sj0f.fsf@nosuchdomain.example.com> <87ttbpqzm1.fsf@nosuchdomain.example.com> <20241203181358.493@kylheku.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Injection-Date: Wed, 04 Dec 2024 17:05:04 +0100 (CET) Injection-Info: dont-email.me; posting-host="24be5a3bcc5136b6a89c55a2b150290e"; logging-data="1027617"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1/bcqfHXa9V0b0ilusBIl9pYKrMhc0MSOQ=" User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.4 (gnu/linux) Cancel-Lock: sha1:Xvb5CzRMl4z32pX9rGdr3MB7KIM= sha1:MgYSzbbTMmPzjd72pC0GL0ZFJ1Y= Xref: csiph.com comp.lang.c:389353 Kaz Kylheku <643-408-1753@kylheku.com> writes: > A hand written recursive descent parser will have the best tooling. Recursive descent parsers work well for some classes of context-free grammars. Other context-free grammars, not so much. A hand written recursive descent parser might have better tooling than any table-driven parser for the same language. Then again, it might not, depending on how it was written, and what table-driven alternatives are available.