newlib
newlib copied to clipboard
fork from sourceware git://sourceware.org / newlib-cygwin.git
As analyzed in this [other conversation](https://github.com/Gericom/GBARunner3/issues/57#issuecomment-1963055105), in the commit https://github.com/devkitPro/newlib/commit/3c75fac130b5720068707f67b12f4372abf4ad38 (done by upstream) the logic whether to define or not ``__restrict`` keyword was changed, and now it is assumed to...
`` header is missing. https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/sys_uio.h.html It is needed for the [asio](https://github.com/chriskohlhoff/asio) library.
Hello! I noticed with the latest `devkitARM` update (r60-9) that `newlib` was updated to 4.3.0 and there appears to be a full `pthread` API included as part of https://github.com/devkitPro/buildscripts/commit/cd5e224d6a14f7d32712ab10cfc08e0c6a2daea3 As...
`` header is missing. https://pubs.opengroup.org/onlinepubs/009695399/basedefs/sys/un.h.html It is needed for the [asio](https://github.com/chriskohlhoff/asio) library.
The file [`newlib/libc/include/termios.h`](http://github.com/devkitpro/newlib/tree/devkitA64/newlib/libc/include/termios.h) of the devkitA64 branch (maybe others?) includes `` which is not included or defined anywhere, which causes code that includes `termios.h` to fail compilation. I was in...
## Bug Report It looks like flock and related functions are declared in stdio.h, but there is no definition of these functions in the standard library implementation, causing a linker...
Currently calling `getentropy` (and by extension `arc4random`) causes a link error because the reentrant version is not present in libc, with this change it should at least compile now ```console...
## Bug Report The `STD_MAX` is set to 35, however only 15 entries are filled https://github.com/devkitPro/buildscripts/blob/b5cdec82b7a5e9bcac1b887ad9108855fc81c349/dka64/patches/newlib-4.5.0.20241231.patch#L8028, so once you try to add device 16, it will crash. This bug exists...