Last change
on this file since 7406ae3e was
7406ae3e,
checked in by Ralf Corsepius <ralf.corsepius@…>, on 05/27/03 at 07:23:51
|
2003-05-27 Ralf Corsepius <corsepiu@…>
- custom/mvme2307.cfg: Remove CFLAGS_PROFILE_V.
|
-
Property mode set to
100644
|
File size:
1.3 KB
|
Line | |
---|
1 | # |
---|
2 | # Config file for the PowerPC 604 based mvme2307 |
---|
3 | # |
---|
4 | # $Id$ |
---|
5 | # |
---|
6 | |
---|
7 | include $(RTEMS_ROOT)/make/custom/default.cfg |
---|
8 | |
---|
9 | RTEMS_CPU=powerpc |
---|
10 | RTEMS_CPU_MODEL=mpc604 |
---|
11 | RTEMS_PPC_EXCEPTION_PROCESSING_MODEL=new |
---|
12 | |
---|
13 | # This is the actual bsp directory used during the build process. |
---|
14 | RTEMS_BSP_FAMILY=motorola_powerpc |
---|
15 | |
---|
16 | # This contains the compiler options necessary to select the CPU model |
---|
17 | # and (hopefully) optimize for it. |
---|
18 | # |
---|
19 | CPU_CFLAGS = -mcpu=604 -mmultiple -mstring -mstrict-align -meabi -msdata=eabi |
---|
20 | |
---|
21 | # optimize flag: typically -0, could use -O4 or -fast |
---|
22 | # -O4 is ok for RTEMS |
---|
23 | # NOTE: some level of -O may be actually required by inline assembler |
---|
24 | #CFLAGS_OPTIMIZE_V=-O4 -fno-keep-inline-functions |
---|
25 | CFLAGS_OPTIMIZE_V = -O4 |
---|
26 | |
---|
27 | # debug flags: typically none, but at least -O1 is required due to this |
---|
28 | # BSP using inlined code |
---|
29 | CFLAGS_DEBUG_V = -O1 |
---|
30 | |
---|
31 | define make-exe |
---|
32 | $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \ |
---|
33 | -o $(basename $@).nxe $(LINK_OBJS) $(LINK_LIBS) |
---|
34 | $(NM) -g -n $(basename $@).nxe > $(basename $@).num |
---|
35 | $(SIZE) $(basename $@).nxe |
---|
36 | $(OBJCOPY) $(basename $@).nxe rtems -O binary -R .comment -S |
---|
37 | gzip -vf9 rtems |
---|
38 | $(LD) -o $@ $(PROJECT_RELEASE)/lib/bootloader.o --just-symbols=$(basename $@).nxe \ |
---|
39 | -b binary rtems.gz -T $(PROJECT_RELEASE)/lib/ppcboot.lds \ |
---|
40 | -Map $(basename $@).map && chmod 755 $@ |
---|
41 | rm -f rtems.gz |
---|
42 | endef |
---|
43 | |
---|
44 | # Miscellaneous additions go here |
---|
45 | |
---|
46 | # No start file |
---|
47 | START_BASE= |
---|
Note: See
TracBrowser
for help on using the repository browser.