Back to home page

LXR

 
 

    


Warning, /bsps/arm/raspberrypi/config/raspberrypi.inc is written in an unsupported language. File is not indexed.

0001 #
0002 #  Config file for Raspberry Pi variants.
0003 #
0004 
0005 include $(RTEMS_ROOT)/make/custom/default.cfg
0006 
0007 RTEMS_CPU = arm
0008 
0009 CFLAGS_OPTIMIZE_V ?= -O2 -g
0010 CFLAGS_OPTIMIZE_V += -ffunction-sections -fdata-sections
0011 
0012 LDFLAGS = -Wl,--gc-sections
0013 
0014 # This defines the operations performed on the linked executable.
0015 # is currently required.
0016 define bsp-post-link
0017     $(OBJCOPY) -O binary --strip-all \
0018         $(basename $@)$(EXEEXT) $(basename $@)$(DOWNEXT)
0019     $(SIZE) $(basename $@)$(EXEEXT)
0020 endef