Changeset 3f5480c in rtems
- Timestamp:
- 08/05/02 19:03:52 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 4deeca3
- Parents:
- 75adbe5f
- Location:
- c/src/lib/libcpu/m68k
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/lib/libcpu/m68k/ChangeLog
r75adbe5f r3f5480c 1 2002-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 1 11 2002-03-27 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 12 -
c/src/lib/libcpu/m68k/configure.ac
r75adbe5f r3f5480c 35 35 || test "$RTEMS_CPU_MODEL" = "m68ec040" \ 36 36 || 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" ) 38 40 39 41 AM_CONDITIONAL(m68040, test "$RTEMS_CPU_MODEL" = "m68040") 40 42 41 43 AM_CONDITIONAL(mcf5206, test "$RTEMS_CPU_MODEL" = "mcf5206") 44 45 AM_CONDITIONAL(mcpu32, test "$RTEMS_CPU_MODEL" = "mcpu32") 42 46 43 47 case "$RTEMS_CPU_MODEL" in … … 50 54 shared/Makefile 51 55 shared/cache/Makefile 56 shared/misc/Makefile 52 57 m68040/Makefile 53 58 m68040/fpsp/Makefile]) -
c/src/lib/libcpu/m68k/shared/Makefile.am
r75adbe5f r3f5480c 4 4 5 5 6 SUBDIRS = cache 6 SUBDIRS = cache misc 7 7 8 8 include $(top_srcdir)/../../../../../automake/subdirs.am -
c/src/lib/libcpu/m68k/shared/misc/memcpy.c
r75adbe5f r3f5480c 40 40 "0" (from), "1" (to), "2" (n) : \ 41 41 "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 42 48 #endif 43 49
Note: See TracChangeset
for help on using the changeset viewer.