Changeset 3f5480c in rtems


Ignore:
Timestamp:
08/05/02 19:03:52 (21 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
4deeca3
Parents:
75adbe5f
Message:

2002-08-05 Joel Sherrill <joel@…>

  • Per PR260 eliminate use of make-target-options. This impacted RTEMS allowing a distinction between the CPU32 and CPU32+ in the SuperCore? and required that the m68k optimized memcpy be moved to libcpu.
  • shared/misc/memcpy.c: Moved from score/cpu/m68k.
  • configure.ac, shared/Makefile.am: Modified to reflect new directory.
  • shared/misc/.cvsignore, shared/misc/Makefile.am: New file.
Location:
c/src/lib/libcpu/m68k
Files:
2 added
4 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libcpu/m68k/ChangeLog

    r75adbe5f r3f5480c  
     12002-08-05      Joel Sherrill <joel@OARcorp.com>
     2
     3        * Per PR260 eliminate use of make-target-options.  This impacted
     4        RTEMS allowing a distinction between the CPU32 and CPU32+ in the
     5        SuperCore and required that the m68k optimized memcpy be moved
     6        to libcpu.
     7        * shared/misc/memcpy.c: Moved from score/cpu/m68k.
     8        * configure.ac, shared/Makefile.am: Modified to reflect new directory.
     9        * shared/misc/.cvsignore, shared/misc/Makefile.am: New file.
     10
    1112002-03-27      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    212
  • c/src/lib/libcpu/m68k/configure.ac

    r75adbe5f r3f5480c  
    3535|| test "$RTEMS_CPU_MODEL" = "m68ec040" \
    3636|| test "$RTEMS_CPU_MODEL" = "m68lc040" \
    37 || test "$RTEMS_CPU_MODEL" = "m68060" )
     37|| test "$RTEMS_CPU_MODEL" = "m68060" \
     38|| test "$RTEMS_CPU_MODEL" = "mcpu32" \
     39|| test "$RTEMS_CPU_MODEL" = "mcpu32p" )
    3840
    3941AM_CONDITIONAL(m68040, test "$RTEMS_CPU_MODEL" = "m68040")
    4042
    4143AM_CONDITIONAL(mcf5206, test "$RTEMS_CPU_MODEL" = "mcf5206")
     44
     45AM_CONDITIONAL(mcpu32, test "$RTEMS_CPU_MODEL" = "mcpu32")
    4246
    4347case "$RTEMS_CPU_MODEL" in
     
    5054shared/Makefile
    5155shared/cache/Makefile
     56shared/misc/Makefile
    5257m68040/Makefile
    5358m68040/fpsp/Makefile])
  • c/src/lib/libcpu/m68k/shared/Makefile.am

    r75adbe5f r3f5480c  
    44
    55
    6 SUBDIRS = cache
     6SUBDIRS = cache misc
    77
    88include $(top_srcdir)/../../../../../automake/subdirs.am
  • c/src/lib/libcpu/m68k/shared/misc/memcpy.c

    r75adbe5f r3f5480c  
    4040                 "0" (from),  "1" (to), "2" (n) : \
    4141                 "cc", "memory")
     42#endif
     43
     44/* gcc doesn't know that cpu32+ is better than cpu32 :( */
     45#if defined(__mcpu32p__)
     46#undef M68k_HAS_MISALIGNED
     47#define M68k_HAS_MISALIGNED 1
    4248#endif
    4349
Note: See TracChangeset for help on using the changeset viewer.