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?
ilogb
does really not work for me. Would you please show your output ofarm-none-eabi-gcc --version
– eDeviser