From a0d4e9933c57693f99203da358bb8aaa8a5d50d9 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Fri, 25 Nov 2016 15:13:36 +1100 Subject: cpukit: Add libdebugger, a remote debugger agent for GDB. --- cpukit/configure.ac | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'cpukit/configure.ac') diff --git a/cpukit/configure.ac b/cpukit/configure.ac index 5a6c2e66bf..3ebf5960e7 100644 --- a/cpukit/configure.ac +++ b/cpukit/configure.ac @@ -396,6 +396,17 @@ esac AM_CONDITIONAL(LIBDL,[test x"$HAVE_LIBDL" = x"yes"]) AC_MSG_RESULT([$HAVE_LIBDL]) +# Filter debugger to only build for architectures that have a target backend +AC_MSG_CHECKING([whether CPU supports libdebugger]) +case $RTEMS_CPU in + arm | i386) + HAVE_LIBDEBUGGER=yes ;; + *) + HAVE_LIBDEBUGGER=no ;; +esac +AM_CONDITIONAL(LIBDEBUGGER,[test x"$HAVE_LIBDEBUGGER" = x"yes"]) +AC_MSG_RESULT([$HAVE_LIBDEBUGGER]) + AC_MSG_CHECKING([whether CPU supports SHA]) case $RTEMS_CPU in m32c) @@ -474,6 +485,7 @@ libi2c/Makefile libmd/Makefile libdl/Makefile libstdthreads/Makefile +libdebugger/Makefile zlib/Makefile ftpd/Makefile telnetd/Makefile -- cgit v1.2.3