source: rtems/bsps/m68k/av5282/config/av5282.cfg @ 89bff5a

5
Last change on this file since 89bff5a was 89bff5a, checked in by Shashvat Jain <shashvatjain2002@…>, on 11/27/18 at 02:29:49

m68k/av5282: Add per-section compilation and linking support (GCI 2018)

The size of the sample executables without this option were:

text data bss dec hex filename

83168 1152 11904 96224 177e0 base_sp.exe

199184 2096 14848 216128 34c40 capture.exe
252496 2912 12912 268320 41820 cdtest.exe
861872 21888 19648 903408 dc8f0 cxx_iostream.exe
564816 4640 24304 593760 90f60 fileio.exe
117168 1504 12048 130720 1fea0 hello.exe
261216 6016 18688 285920 45ce0 loopback.exe

67200 1008 8768 76976 12cb0 minimum.exe

106336 1632 12016 119984 1d4b0 nsecs.exe
191856 1904 12624 206384 32630 paranoia.exe
430224 12048 41472 483744 761a0 pppd.exe

85920 1168 11936 99024 182d0 ticker.exe
85984 1120 15808 102912 19200 unlimited.exe

The size of the sample executables with this option were:

text data bss dec hex filename

78512 1136 11824 91472 16550 base_sp.exe

185584 2096 14800 202480 316f0 capture.exe
184192 2144 12864 199200 30a20 cdtest.exe
184384 2224 13072 199680 30c00 cxx_iostream.exe
552288 4624 23984 580896 8dd20 fileio.exe
108224 1504 12016 121744 1db90 hello.exe
245168 6016 18608 269792 41de0 loopback.exe

62416 1008 8688 72112 119b0 minimum.exe

100256 1616 11936 113808 1bc90 nsecs.exe
183216 1904 12592 197712 30450 paranoia.exe
417648 12048 41392 471088 73030 pppd.exe

81024 1168 11856 94048 16f60 ticker.exe
84176 1120 15776 101072 18ad0 unlimited.exe

Closes #2574

  • Property mode set to 100644
File size: 728 bytes
Line 
1#
2#  Config file for the uC5282 BSP
3#
4
5RTEMS_CPU=m68k
6
7include $(RTEMS_ROOT)/make/custom/default.cfg
8
9#  This contains the compiler options necessary to select the CPU model
10#  and (hopefully) optimize for it.
11CPU_CFLAGS = -mcpu=528x
12
13
14# optimize flag: typically -O2
15CFLAGS_OPTIMIZE_V = -O2 -g -fomit-frame-pointer
16
17# FIXME: Disabled because linkcmds lacks proper KEEP() directives. See #2574.
18# The following two lines enable compiling and linking on per element.
19CFLAGS_OPTIMIZE_V += -ffunction-sections -fdata-sections
20LDFLAGS = -Wl,--gc-sections
21
22ifndef MTARGET
23MTARGET=ram
24endif
25
26define bsp-post-link
27        $(default-bsp-post-link)
28        $(OBJCOPY) -O binary --strip-all \
29            $(basename $@)$(EXEEXT) $(basename $@)$(DOWNEXT)
30endef
Note: See TracBrowser for help on using the repository browser.