From b4043ead0bd07108c9ecc228bd42e3ee81fc0c54 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 24 Sep 2018 09:32:49 -0500 Subject: check-networking.m4: Disable legacy stack for x86_64 and epiphany x86_64 is 64-bits and too new for the legacy stack to support. epiphany is a small target and cannot compile the legacy (or new) stack. --- c/src/aclocal/check-networking.m4 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'c') diff --git a/c/src/aclocal/check-networking.m4 b/c/src/aclocal/check-networking.m4 index 89e53f638e..b2d9bf58d1 100644 --- a/c/src/aclocal/check-networking.m4 +++ b/c/src/aclocal/check-networking.m4 @@ -9,7 +9,11 @@ AC_CACHE_CHECK([whether BSP supports networking], [dnl case "$RTEMS_CPU" in # do not have address space to hold BSD TCP/IP stack - m32c*) + epiphany* | m32c*) + rtems_cv_HAS_NETWORKING="no" + ;; + # Newer architecture ports that should only use new TCP/IP stack + x86_64*) rtems_cv_HAS_NETWORKING="no" ;; *) -- cgit v1.2.3