source: rtems/c/src/lib/libbsp/v850/gdbv850sim/Makefile.am @ fe535885

4.115
Last change on this file since fe535885 was 2d7ae960, checked in by Joel Sherrill <joel.sherrill@…>, on 06/11/12 at 18:37:29

v850 port: Initial addition with BSP for simulator in GDB

Port

+ v850 does not have appear to have any optimized bit scan instructions
+ v850 does have single instructions for wap u16 and u32
+ Code path optimization preferences set
+ Add BSP variants for each GCC CPU model flag and a README

  • v850e1 variant does not work (fails during BSP initialization)

BSP for GDB v850 Simulator

+ linkcmds matches defaults in GDB simulator with RTEMS mods
+ crt1.c added from v850 newlib port for main()
+ BSP exits cleanly
+ printk and console I/O work
+ uses clock tick from IDLE task
+ Tests not requiring real clock ISR work

Documentation

+ CPU Supplment chapter for v850 added

  • Property mode set to 100644
File size: 1.6 KB
Line 
1##
2##
3
4ACLOCAL_AMFLAGS = -I ../../../../aclocal
5
6include $(top_srcdir)/../../../../automake/compile.am
7include $(top_srcdir)/../../bsp.am
8
9include_bspdir = $(includedir)/bsp
10
11dist_project_lib_DATA = bsp_specs
12
13include_HEADERS = include/bsp.h
14include_HEADERS += ../../shared/include/tm27.h
15include_bsp_HEADERS = include/syscall.h
16
17nodist_include_HEADERS = include/bspopts.h
18nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
19DISTCLEANFILES = include/bspopts.h
20noinst_PROGRAMS =
21
22nodist_include_HEADERS += ../../shared/include/coverhd.h
23
24EXTRA_DIST = start/start.S
25start.$(OBJEXT): start/start.S
26        $(CPPASCOMPILE) -o $@ -c $<
27project_lib_DATA = start.$(OBJEXT)
28
29dist_project_lib_DATA += startup/linkcmds
30
31libbsp_a_SOURCES = ../../shared/bspclean.c
32libbsp_a_SOURCES += ../../shared/bsplibc.c
33libbsp_a_SOURCES += ../../shared/bsppredriverhook.c
34libbsp_a_SOURCES += ../../shared/bsppretaskinghook.c
35libbsp_a_SOURCES += ../../shared/bspgetworkarea.c
36libbsp_a_SOURCES += ../../shared/bsppost.c
37libbsp_a_SOURCES += ../../shared/bspstart.c
38libbsp_a_SOURCES += ../../shared/bootcard.c
39libbsp_a_SOURCES += ../../shared/sbrk.c
40libbsp_a_SOURCES += ../../shared/gnatinstallhandler.c
41libbsp_a_SOURCES += startup/bspreset.c
42libbsp_a_SOURCES += ../../v850/shared/crt1.c
43libbsp_a_SOURCES += startup/trap.S
44
45libbsp_a_SOURCES += ../../shared/clock_driver_simidle.c
46libbsp_a_SOURCES += ../../shared/console-polled.c
47libbsp_a_SOURCES += console/console-io.c
48libbsp_a_SOURCES += ../../shared/timerstub.c
49
50noinst_LIBRARIES = libbsp.a
51
52include $(srcdir)/preinstall.am
53include $(top_srcdir)/../../../../automake/local.am
Note: See TracBrowser for help on using the repository browser.