4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-02-13 12:39:22 +08:00
Dimitar Dimitrov 7d386b6dac pru: Do not define MISSING_SYSCALL_NAMES for pru
- The PRU newlib port is supposed to implement case #2 as described in
  newlib/libc/include/reent.h .  Thus drop the defining of
  MISSING_SYSCALL_NAMES.
- libgloss/configure: Regenerate.
- libgloss/libnosys/acinclude.m4: Do not define
  MISSING_SYSCALL_NAMES for pru.

Signed-off-by: Dimitar Dimitrov <dimitar@dinux.eu>
2024-05-22 11:41:37 -04:00

30 lines
588 B
Plaintext

dnl Make sure syscall names match those being used by newlib
case "${target}" in
*-*-cygwin*) ;;
a29k-amd-udi) ;;
aarch64*-*-*) ;;
arc-*-*) ;;
arm*-*-*) ;;
bfin-*-*) ;;
cris-*-* | crisv32-*-*) ;;
d10v*) ;;
h8300*-*-*) ;;
h8500-*-*) ;;
i[3456]86-*-sco*) ;;
lm32-*-*) ;;
m32r-*-*) ;;
mn10?00-*-*) ;;
riscv*-*-*) ;;
powerpcle-*-pe) ;;
pru-*-*) ;;
sh*-*-*) ;;
sparc-sun-sunos*) ;;
sparc64-*-*) ;;
v850*-*-*) ;;
w65-*-*) ;;
xstormy16-*-*) ;;
xtensa-*-*) ;;
z8k-*-*) ;;
*) AC_DEFINE(MISSING_SYSCALL_NAMES, 1, [Missing syscall names]) ;;
esac