This is the mail archive of the
newlib@sourceware.org
mailing list for the newlib project.
Bug with gcvtf
- From: Rian Quinn <rianquinn at gmail dot com>
- To: newlib at sourceware dot org
- Date: Mon, 26 Aug 2019 12:15:40 +0000
- Subject: Bug with gcvtf
The "gcvtf" function in newlib/newlib/libc/stdlib/efgcvt.c is in the file
before gcvt, but relies on it with an implicit definition. When attempting
to compile Newlib on x86_64 for Libc++ support, I get a compile error as
the definitions of the implicit version does not match the actual version.
To fix the issue, all I had to do was to place the gcvtf version _after_
the implementation of gcvt and it compiles fine.
Rian