source: rtems/cpukit/score/cpu/m32r/Makefile.am @ f7f1d77

4.115
Last change on this file since f7f1d77 was 815994f, checked in by Sebastian Huber <sebastian.huber@…>, on 11/25/12 at 16:48:11

score: Add CPU_Exception_frame

Add CPU port type CPU_Exception_frame and function
_CPU_Exception_frame_print().

The CPU ports of avr, bfin, h8300, lm32, m32c, m32r, m68k, nios2, sh,
sparc64, and v850 use an empty default implementation of
_CPU_Exception_frame_print().

Add rtems_exception_frame and rtems_exception_frame_print().

Add RTEMS_FATAL_SOURCE_EXCEPTION for CPU exceptions. Use rtems_fatal()
with source RTEMS_FATAL_SOURCE_EXCEPTION in CPU ports of i386, powerpc,
and sparc for unexpected exceptions.

Add third parameter to RTEMS_BSP_CLEANUP_OPTIONS() which controls the
BSP_PRINT_EXCEPTION_CONTEXT define used in the default
bsp_fatal_extension().

Add test sptests/spfatal26.

  • Property mode set to 100644
File size: 664 bytes
Line 
1include $(top_srcdir)/automake/compile.am
2
3include_HEADERS =
4
5include_rtemsdir = $(includedir)/rtems
6include_rtems_HEADERS = rtems/asm.h
7
8include_rtems_scoredir = $(includedir)/rtems/score
9include_rtems_score_HEADERS = rtems/score/cpu.h
10include_rtems_score_HEADERS += rtems/score/m32r.h
11include_rtems_score_HEADERS += rtems/score/cpu_asm.h
12include_rtems_score_HEADERS += rtems/score/types.h
13
14noinst_LIBRARIES = libscorecpu.a
15libscorecpu_a_SOURCES = cpu.c cpu_asm.c context_switch.S context_init.c
16libscorecpu_a_SOURCES += m32r-exception-frame-print.c
17libscorecpu_a_CPPFLAGS = $(AM_CPPFLAGS)
18
19include $(srcdir)/preinstall.am
20include $(top_srcdir)/automake/local.am
Note: See TracBrowser for help on using the repository browser.