source: rtems/cpukit/aclocal/check-networking.m4 @ d76e7c1

Last change on this file since d76e7c1 was 401b237, checked in by Sebastian Huber <sebastian.huber@…>, on 07/03/20 at 05:46:24

epiphany: Remove support for this target

Due to an unmaintained toolchain (internal errors in GCC, no FSF GDB
integration) the Epiphany architecture was obsoleted in RTEMS 5.1.

Update #3941.

  • Property mode set to 100644
File size: 648 bytes
Line 
1dnl
2AC_DEFUN([RTEMS_CHECK_NETWORKING],
3[dnl
4AC_REQUIRE([RTEMS_CANONICAL_TARGET_CPU])dnl
5AC_REQUIRE([RTEMS_ENABLE_NETWORKING])dnl
6AC_REQUIRE([RTEMS_INCLUDES])dnl
7
8AC_CACHE_CHECK([whether CPU supports networking],
9  rtems_cv_HAS_NETWORKING,
10  [dnl
11    case "$host" in
12    # Newer architecture ports that should only use new TCP/IP stack
13    x86_64*)
14      rtems_cv_HAS_NETWORKING="no"
15      ;;
16    *)
17      AS_IF([test "${RTEMS_HAS_NETWORKING}" = "yes"],
18      [rtems_cv_HAS_NETWORKING="yes"
19      RTEMS_CPPFLAGS="${RTEMS_CPPFLAGS} -I${RTEMS_SOURCE_ROOT}/cpukit/libnetworking"],
20      [rtems_cv_HAS_NETWORKING="no"])
21      ;;
22    esac
23    ])
24  ])
25])
Note: See TracBrowser for help on using the repository browser.