source: rtems/c/src/lib/libbsp/m68k/mvme167/make/custom/mvme167.cfg @ 9b4422a2

4.115
Last change on this file since 9b4422a2 was 9b4422a2, checked in by Joel Sherrill <joel.sherrill@…>, on 05/03/12 at 15:09:24

Remove All CVS Id Strings Possible Using a Script

Script does what is expected and tries to do it as
smartly as possible.

+ remove occurrences of two blank comment lines

next to each other after Id string line removed.

+ remove entire comment blocks which only exited to

contain CVS Ids

+ If the processing left a blank line at the top of

a file, it was removed.

  • Property mode set to 100644
File size: 1.4 KB
RevLine 
[373331bd]1#
2#  Config file for the mvme167 BSP
3#
4
5# THIS BSP USES ELF IMAGES. IT WILL NOT WORK WITH COFF UNLESS CHANGES
6# ARE MADE TO THE LINKCMDS FILE.
7
8RTEMS_CPU=m68k
9RTEMS_CPU_MODEL=m68040
10
11include $(RTEMS_ROOT)/make/custom/default.cfg
12
13#  This contains the compiler options necessary to select the CPU model
14#  and (hopefully) optimize for it.  We also specify the BSP during compilation.
15#  This should really get its own flag, but it works here.
16#
17
18CPU_CFLAGS = -mcpu=68040
19
20
21# optimize flag: typically -O2
22CFLAGS_OPTIMIZE_V = -O2 -g -fno-omit-frame-pointer
23
24# We use TFTP to transfer files to the MVME167. We generate binary files
25# rather than S-records. We skip the header during downloads.
26
27# The MC68040 does not implement all MC68881/MC68882 instructions, so use
28# either the gcc floating-point software support (msoft-float libraries), or
29# use the Motorola FPSP floating-point emulator in
30#   rtems/c/src/lib/libcpu/m68k/m68040/fpsp
31# The default is to use the FPSP.
32# To use the msoft-float libraries, uncomment the three lines below.
33# You then should comment the M68KFPSPInstallExceptionHandlers() statement
34# in rtems/c/src/lib/libbsp/m68k/mvme167/startup/bststart.c in bsp_start().
35# Floating-point support will then be limited. See the mvme167 README file
36# for more details.
37define bsp-post-link
38        $(default-bsp-post-link)
39    $(OBJCOPY) -O binary -R .comment -S $(basename $@).exe $(basename $@)$(DOWNEXT)
40endef
Note: See TracBrowser for help on using the repository browser.