Warning, /bsps/powerpc/virtex4/config/virtex4.cfg is written in an unsupported language. File is not indexed.
0001 include $(RTEMS_ROOT)/make/custom/default.cfg
0002
0003 RTEMS_CPU=powerpc
0004
0005 # This contains the compiler options necessary to select the CPU model
0006 # and (hopefully) optimize for it.
0007 #
0008 CPU_CFLAGS = -mcpu=405
0009
0010 # optimize flag: typically -O2
0011 CFLAGS_OPTIMIZE_V = -O2 -g -fno-keep-inline-functions
0012 CFLAGS_OPTIMIZE_V += -ffunction-sections -fdata-sections
0013
0014 LDFLAGS = -Wl,--gc-sections
0015
0016 # Miscellaneous additions go here
0017 define bsp-post-link
0018 $(default-bsp-post-link)
0019 $(OBJCOPY) -O srec $(basename $@)$(EXEEXT) $(basename $@)$(DOWNEXT)
0020 endef
0021