Re: Problem linking *without* avr-libc, libm, etc. (SOLVED)

Ian Molton <[email protected]> Tue, 22 Jun 2021 16:57:47 +0100
Newsgroups gmane.comp.hardware.avr.gcc
Message-ID <[email protected]>
On 01/05/2021 01:11, David Kelly wrote:
> Has been a long time for me but Once Upon A Time it wasn’t just a matter
> of “not using functions in the library”. AVR-gcc required primatives
> other than startup code.

It still does - not just on AVR - also on ARM and others.

It was quite amusing when I implemented the "internal" memcpy() - in C -
only to find that the compiler outsmarted me and implemented it as a
call to itself (which obviously crashed the stack).

doh!

So I've "borrowed" a few bits from avr-libc and avr-gcc to allow my
project to build independently of them.

-Ian