Changeset e68206a1 in rtems
- Timestamp:
- Jan 20, 2005, 6:12:20 PM (16 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- f3b7be3
- Parents:
- 25bcb1dd
- Location:
- make
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
make/ChangeLog
r25bcb1dd re68206a1 1 2005-01-20 Joel Sherrill <joel@OARcorp.com> 2 3 * custom/arm_bare_bsp.cfg, custom/armulator.cfg, custom/csb336.cfg, 4 custom/csb337.cfg, custom/edb7312.cfg, custom/jmr3904.cfg, 5 custom/pc486.cfg, custom/pc586.cfg, custom/pc686.cfg, 6 custom/pck6.cfg, custom/vegaplus.cfg: Correct use of arguments for 7 gcc 4.x. Hopefully they are still OK for gcc 3.3.5. 8 1 9 2005-01-01 Ralf Corsepius <ralf.corsepius@rtems.org> 2 10 -
make/custom/arm_bare_bsp.cfg
r25bcb1dd re68206a1 17 17 # 18 18 #CPU_CFLAGS = -mcpu=arm7tdmi 19 CPU_CFLAGS = -msoft-float19 # CPU_CFLAGS = -msoft-float 20 20 21 21 # optimize flag: typically -0, could use -O4 or -fast -
make/custom/armulator.cfg
r25bcb1dd re68206a1 17 17 # 18 18 #CPU_CFLAGS = -mcpu=arm7tdmi 19 CPU_CFLAGS = -msoft-float19 # CPU_CFLAGS = -msoft-float 20 20 21 21 # optimize flag: typically -0, could use -O4 or -fast -
make/custom/csb336.cfg
r25bcb1dd re68206a1 16 16 # and (hopefully) optimize for it. 17 17 # 18 CPU_CFLAGS = -mcpu=arm920 -mstructure-size-boundary=8 -msoft-float 18 CPU_CFLAGS = -mcpu=arm920 -mstructure-size-boundary=8 19 #CPU_CFLAGS += -msoft-float 19 20 20 21 # optimize flag: typically -0, could use -O4 or -fast -
make/custom/csb337.cfg
r25bcb1dd re68206a1 16 16 # and (hopefully) optimize for it. 17 17 # 18 CPU_CFLAGS = -mcpu=arm920 -mstructure-size-boundary=8 -msoft-float 18 CPU_CFLAGS = -mcpu=arm920 -mstructure-size-boundary=8 19 CPU_CFLAGS += -msoft-float 19 20 20 21 # optimize flag: typically -0, could use -O4 or -fast -
make/custom/edb7312.cfg
r25bcb1dd re68206a1 16 16 # and (hopefully) optimize for it. 17 17 # 18 CPU_CFLAGS = -mcpu=$(RTEMS_CPU_MODEL) -mstructure-size-boundary=8 -msoft-float 18 CPU_CFLAGS = -mcpu=$(RTEMS_CPU_MODEL) -mstructure-size-boundary=8 19 # CPU_CFLAGS += -msoft-float 19 20 20 21 # optimize flag: typically -0, could use -O4 or -fast -
make/custom/jmr3904.cfg
r25bcb1dd re68206a1 19 19 #CPU_CFLAGS=-m3900 -G0 20 20 # gcc 3.1 and newer 21 CPU_CFLAGS=-march=r3900 - G021 CPU_CFLAGS=-march=r3900 -Wa,-xgot -G0 22 22 23 23 # optimize flag: typically -0, could use -O4 or -fast … … 30 30 31 31 define make-exe 32 $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \32 $(LINK.c) $(AM_CFLAGS) -G0 $(AM_LDFLAGS) \ 33 33 $(LDLIBS) -o $@ \ 34 34 $(LINK_OBJS) $(LINK_LIBS) -
make/custom/pc486.cfg
r25bcb1dd re68206a1 9 9 #CPU_CFLAGS = -m486 10 10 # gcc 3.1 and newer 11 CPU_CFLAGS=-mcpu=i486 11 # CPU_CFLAGS=-mcpu=i486 12 # gcc 4.0 and newer 13 CPU_CFLAGS=-mtune=i486 12 14 13 15 include $(RTEMS_ROOT)/make/custom/pc386.cfg -
make/custom/pc586.cfg
r25bcb1dd re68206a1 9 9 #CPU_CFLAGS = -mpentium 10 10 # gcc 3.1 and newer 11 CPU_CFLAGS=-mcpu=pentium 11 # CPU_CFLAGS=-mcpu=pentium 12 # gcc 4.0 and newer 13 CPU_CFLAGS=-mtune=pentium 12 14 13 15 include $(RTEMS_ROOT)/make/custom/pc386.cfg -
make/custom/pc686.cfg
r25bcb1dd re68206a1 9 9 #CPU_CFLAGS = -mpentiumpro 10 10 # gcc 3.1 and newer 11 CPU_CFLAGS=-mcpu=pentiumpro 11 # CPU_CFLAGS=-mcpu=pentiumpro 12 # gcc 4.0 and newer 13 CPU_CFLAGS=-mtune=pentiumpro 12 14 13 15 include $(RTEMS_ROOT)/make/custom/pc386.cfg -
make/custom/pck6.cfg
r25bcb1dd re68206a1 6 6 7 7 RTEMS_CPU_MODEL=pentium 8 CPU_CFLAGS = -mcpu=k6 8 # gcc 3.1 and newer 9 # CPU_CFLAGS = -mcpu=k6 10 # gcc 4.0 and newer 11 CPU_CFLAGS = -mtune=k6 9 12 10 13 include $(RTEMS_ROOT)/make/custom/pc386.cfg -
make/custom/vegaplus.cfg
r25bcb1dd re68206a1 17 17 # 18 18 #CPU_CFLAGS = -mcpu=arm7tdmi 19 CPU_CFLAGS = -msoft-float19 # CPU_CFLAGS = -msoft-float 20 20 21 21 # optimize flag: typically -0, could use -O4 or -fast
Note: See TracChangeset
for help on using the changeset viewer.