source: rtems/c/src/lib/libbsp/powerpc/beatnik/make/custom/beatnik.cfg @ b7a6d23a

4.104.115
Last change on this file since b7a6d23a was b7a6d23a, checked in by Till Straumann <strauman@…>, on 12/03/09 at 16:56:50
  • importing 'beatnik' BSP from SLAC repository.
  • Property mode set to 100644
File size: 1.0 KB
Line 
1#
2#  Config file for the PowerPC 745x based mvmexxxx
3#
4#
5
6include $(RTEMS_ROOT)/make/custom/default.cfg
7
8RTEMS_CPU=powerpc
9RTEMS_CPU_MODEL=mpc7455
10RTEMS_PPC_EXCEPTION_PROCESSING_MODEL=new
11
12# This is the actual bsp directory used during the build process.
13RTEMS_BSP_FAMILY=beatnik
14
15#  This contains the compiler options necessary to select the CPU model
16#  and (hopefully) optimize for it.
17#
18CPU_CFLAGS = -mcpu=7400 -D__ppc_generic
19#T. Straumann; disable sdata=eabi for now until CEXP supports it -meabi -msdata=eabi
20
21# optimize flag: typically -0, could use -O4 or -fast
22# -O4 is ok for RTEMS
23# NOTE: some level of -O may be actually required by inline assembler
24#CFLAGS_OPTIMIZE_V=-O4 -fno-keep-inline-functions
25CFLAGS_OPTIMIZE_V = -O2 -g
26
27# debug flags: typically none, but at least -O1 is required due to this
28# BSP using inlined code
29CFLAGS_DEBUG_V = -O1 -g
30
31define bsp-post-link
32        $(default-bsp-post-link)
33    $(OBJCOPY) -Obinary $@ $(basename $@)$(DOWNEXT)
34endef
35
36# Miscellaneous additions go here
37START_BASE = motld_start
Note: See TracBrowser for help on using the repository browser.