Changeset 261f99bd in rtems
- Timestamp:
- 08/02/07 15:00:07 (16 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 27ccd807
- Parents:
- 51131354
- Location:
- c/src
- Files:
-
- 46 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/ChangeLog
r51131354 r261f99bd 1 2007-08-02 Joel Sherrill <joel.sherrill@OARcorp.com> 2 3 * configure.ac, wrapup/Makefile.am: Remove RDBG. 4 * aclocal/check-rdbg.m4, aclocal/enable-rdbg.m4, librdbg/.cvsignore, 5 librdbg/Makefile.am, librdbg/preinstall.am, 6 librdbg/include/rdbg/rdbg.h, librdbg/include/rdbg/servrpc.h, 7 librdbg/include/rdbg/i386/rdbg_f.h, librdbg/include/rdbg/i386/reg.h, 8 librdbg/include/rdbg/m68k/rdbg_f.h, librdbg/include/rdbg/m68k/reg.h, 9 librdbg/include/rdbg/powerpc/rdbg_f.h, 10 librdbg/include/rdbg/powerpc/reg.h, librdbg/src/_servtgt.c, 11 librdbg/src/awk.svc, librdbg/src/excep.c, librdbg/src/ptrace.c, 12 librdbg/src/rdbg.c, librdbg/src/remdeb.x, librdbg/src/servbkpt.c, 13 librdbg/src/servcon.c, librdbg/src/servrpc.c, librdbg/src/servtgt.c, 14 librdbg/src/servtsp.c, librdbg/src/servutil.c, 15 librdbg/src/i386/excep_f.c, librdbg/src/i386/rdbg_cpu_asm.S, 16 librdbg/src/i386/rdbg_f.c, librdbg/src/i386/any/remdeb.h, 17 librdbg/src/i386/any/remdeb_f.x, librdbg/src/i386/any/remdeb_svc.c, 18 librdbg/src/i386/any/remdeb_xdr.c, librdbg/src/m68k/excep_f.c, 19 librdbg/src/m68k/rdbg_cpu_asm.S, librdbg/src/m68k/rdbg_f.c, 20 librdbg/src/m68k/any/remdeb.h, librdbg/src/m68k/any/remdeb_f.x, 21 librdbg/src/m68k/any/remdeb_svc.c, librdbg/src/m68k/any/remdeb_xdr.c, 22 librdbg/src/powerpc/excep_f.c, librdbg/src/powerpc/rdbg_cpu_asm.S, 23 librdbg/src/powerpc/rdbg_f.c, 24 librdbg/src/powerpc/new_exception_processing/remdeb.h, 25 librdbg/src/powerpc/new_exception_processing/remdeb_f.x, 26 librdbg/src/powerpc/new_exception_processing/remdeb_svc.c, 27 librdbg/src/powerpc/new_exception_processing/remdeb_xdr.c: Removed. 28 1 29 2007-07-27 Ralf Corsépius <ralf.corsepius@rtems.org> 2 30 -
c/src/configure.ac
r51131354 r261f99bd 10 10 RTEMS_ENABLE_CXX 11 11 RTEMS_ENABLE_NETWORKING 12 RTEMS_ENABLE_RDBG13 12 14 13 RTEMS_CANONICAL_TARGET_CPU … … 106 105 RTEMS_CANONICALIZE_TOOLS 107 106 108 AS_IF([test "$HAS_NETWORKING" = "yes"],[109 AS_IF([test "$RTEMS_HAS_RDBG" = "yes"],[110 RTEMS_CHECK_RDBG(RTEMS_BSP)111 ])112 ])113 114 107 RTEMS_CHECK_GCC_WEAK 115 108 … … 153 146 BSP_SUBDIRS="$BSP_SUBDIRS lib" 154 147 BSP_SUBDIRS="$BSP_SUBDIRS libchip" 155 BSP_SUBDIRS="$BSP_SUBDIRS librdbg"156 148 BSP_SUBDIRS="$BSP_SUBDIRS nfsclient" 157 149 … … 221 213 AM_CONDITIONAL([HAS_NETWORKING],[test "$HAS_NETWORKING" = "yes"]) 222 214 223 # FIXME: This is sick224 AM_CONDITIONAL([HAS_RDBG],[test "$HAS_RDBG" = "yes"])225 AM_CONDITIONAL([HAS_RDBG_i386],[test "$HAS_RDBG" = "yes" \226 && test $RTEMS_CPU = "i386"])227 AM_CONDITIONAL([HAS_RDBG_m68k],[test "$HAS_RDBG" = "yes" \228 && test $RTEMS_CPU = "m68k"])229 AM_CONDITIONAL([HAS_RDBG_powerpc],[test "$HAS_RDBG" = "yes" \230 && test $RTEMS_CPU = "powerpc"])231 232 215 AM_CONDITIONAL(HAS_POSIX,test "$HAS_POSIX_API" = "yes") 233 216 … … 260 243 support/Makefile 261 244 262 librdbg/Makefile263 264 245 libchip/Makefile 265 246 -
c/src/wrapup/Makefile.am
r51131354 r261f99bd 15 15 if HAS_LIBBSP 16 16 SRCS += ../lib/libbsp/@RTEMS_CPU@/@RTEMS_BSP_FAMILY@/libbsp.a 17 endif18 19 if HAS_RDBG20 SRCS += ../librdbg/librdbg.a21 17 endif 22 18
Note: See TracChangeset
for help on using the changeset viewer.