source: rtems/bsps/powerpc/beatnik/config/beatnik.cfg @ a2aec0b7

5
Last change on this file since a2aec0b7 was 1f283f17, checked in by Sebastian Huber <sebastian.huber@…>, on 06/15/18 at 06:07:17

bsp/beatnik: Remove CFLAGS_DEBUG_V

This was the only BSP setting this flag.

  • Property mode set to 100644
File size: 951 bytes
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_PPC_EXCEPTION_PROCESSING_MODEL=new
10
11# This is the actual bsp directory used during the build process.
12RTEMS_BSP_FAMILY=beatnik
13
14#  This contains the compiler options necessary to select the CPU model
15#  and (hopefully) optimize for it.
16#
17CPU_CFLAGS = -mcpu=7400
18#T. Straumann; disable sdata=eabi for now until CEXP supports it -meabi -msdata=eabi
19
20# optimize flag: typically -0, could use -O4 or -fast
21# -O4 is ok for RTEMS
22# NOTE: some level of -O may be actually required by inline assembler
23#CFLAGS_OPTIMIZE_V=-O4 -fno-keep-inline-functions
24CFLAGS_OPTIMIZE_V = -O2 -g
25CFLAGS_OPTIMIZE_V += -ffunction-sections -fdata-sections
26
27LDFLAGS = -Wl,--gc-sections
28
29define bsp-post-link
30        $(default-bsp-post-link)
31        $(OBJCOPY) -O binary $@ $(basename $@)$(DOWNEXT)
32endef
33
34# Miscellaneous additions go here
35START_BASE = motld_start
Note: See TracBrowser for help on using the repository browser.