I am using a stm32 which uses GNU Arm Embedded Toolchain which uses the newLib.
I added some the skeletons from asn1c and run into a linker problem when using floats. The Linker error says:
undefined reference to `ilogb'
It seems to me that newLib does not implement ilogb
(see man ilogb)
How do I use ilogb
with newLib or is there an alternative function I can call?