Changeset 67da219 in rtems for make/custom/erc32.cfg
- Timestamp:
- 01/04/02 18:08:42 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- c4069d4
- Parents:
- e4dbf55
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
make/custom/erc32.cfg
re4dbf55 r67da219 9 9 10 10 RTEMS_CPU=sparc 11 RTEMS_CPU_MODEL=erc32 11 12 12 ifeq ($(RTEMS_CPU_MODEL),erc32nfp)13 MSOFT_FLOAT = -msoft-float14 else15 RTEMS_CPU_MODEL=erc3216 endif17 13 # This is the actual bsp directory used during the build process. 18 14 RTEMS_BSP_FAMILY=erc32 19 15 20 # The -mflat avoids the use of save/restore instructions. It has 21 # a negative impact on the performance of RTEMS and should not be used. 22 23 ifeq ($(RTEMS_USE_GCC272),yes) 24 # -mno-v8 says not to use v8 level instructions. i.e. use v7 only 25 # FIXME: This known not to work with gcc's >= gcc-2.95 26 CPU_CFLAGS = -mno-v8 -mcypress $(MSOFT_FLOAT) 27 else 28 # -mcpu=cypress says to optimize for a Cypress 60x chipset 29 CPU_CFLAGS = -mcpu=cypress $(MSOFT_FLOAT) 30 endif 16 CPU_CFLAGS = -mcpu=cypress 31 17 32 18 # optimize flag: typically -0, could use -O4 or -fast … … 57 43 # will be able to override parts of the compilers specs and link using gcc. 58 44 59 ifeq ($(RTEMS_USE_GCC272),yes)60 define make-exe61 $(LD) -u _sbrk $(LDFLAGS) -N -T $(LINKCMDS) -o $(basename $@).exe \62 $(START_FILE) $(LINK_OBJS) --start-group $(LINK_LIBS) --end-group63 $(NM) -g -n $(basename $@).exe > $(basename $@).num64 $(SIZE) $(basename $@).exe65 endef66 else67 45 define make-exe 68 46 $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).exe \ … … 71 49 $(SIZE) $(basename $@).exe 72 50 endef 73 endif74 51 # Miscellaneous additions go here 75
Note: See TracChangeset
for help on using the changeset viewer.