This is the mail archive of the
newlib@sourceware.org
mailing list for the newlib project.
Re: sys/types.h is broken for _POSIX_THREADS
On 02/24/2010 05:57 PM, Renato Caldas wrote:
Aparently the problem was that I was using an arm-rtems4.10-eabi
target.. Using an arm-rtems4.10 target seemed to fix things (strange).
Not strange:
# /usr/share/automake-1.11/config.sub arm-rtems4.10-eabi
arm-rtems4.10-eabi
# /usr/share/automake-1.11/config.sub arm-rtems4.10
arm-unknown-rtems4.10
i.e.
arm-rtems4.10 is a short-cut for arm-unknown-rtems4.10, which means
CPU=arm, VENDOR=unknown, OS=rtems4.10,
while
arm-rtems4.10-eabi means
CPU=arm, VENDOR=rtems4.10, OS=eabi.
Something entirely different.
Ralf