forked from Imagelibrary/rtems
2005-01-20 Joel Sherrill <joel@OARcorp.com>
* custom/arm_bare_bsp.cfg, custom/armulator.cfg, custom/csb336.cfg, custom/csb337.cfg, custom/edb7312.cfg, custom/jmr3904.cfg, custom/pc486.cfg, custom/pc586.cfg, custom/pc686.cfg, custom/pck6.cfg, custom/vegaplus.cfg: Correct use of arguments for gcc 4.x. Hopefully they are still OK for gcc 3.3.5.
This commit is contained in:
@@ -1,3 +1,11 @@
|
||||
2005-01-20 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* custom/arm_bare_bsp.cfg, custom/armulator.cfg, custom/csb336.cfg,
|
||||
custom/csb337.cfg, custom/edb7312.cfg, custom/jmr3904.cfg,
|
||||
custom/pc486.cfg, custom/pc586.cfg, custom/pc686.cfg,
|
||||
custom/pck6.cfg, custom/vegaplus.cfg: Correct use of arguments for
|
||||
gcc 4.x. Hopefully they are still OK for gcc 3.3.5.
|
||||
|
||||
2005-01-01 Ralf Corsepius <ralf.corsepius@rtems.org>
|
||||
|
||||
* compilers/gcc-portsw.cfg: Remove.
|
||||
|
||||
@@ -16,7 +16,7 @@ RTEMS_BSP_FAMILY=arm_bare_bsp
|
||||
# and (hopefully) optimize for it.
|
||||
#
|
||||
#CPU_CFLAGS = -mcpu=arm7tdmi
|
||||
CPU_CFLAGS = -msoft-float
|
||||
# CPU_CFLAGS = -msoft-float
|
||||
|
||||
# optimize flag: typically -0, could use -O4 or -fast
|
||||
# -O4 is ok for RTEMS
|
||||
|
||||
@@ -16,7 +16,7 @@ RTEMS_BSP_FAMILY=armulator
|
||||
# and (hopefully) optimize for it.
|
||||
#
|
||||
#CPU_CFLAGS = -mcpu=arm7tdmi
|
||||
CPU_CFLAGS = -msoft-float
|
||||
# CPU_CFLAGS = -msoft-float
|
||||
|
||||
# optimize flag: typically -0, could use -O4 or -fast
|
||||
# -O4 is ok for RTEMS
|
||||
|
||||
@@ -15,7 +15,8 @@ RTEMS_BSP_FAMILY=csb336
|
||||
# This contains the compiler options necessary to select the CPU model
|
||||
# and (hopefully) optimize for it.
|
||||
#
|
||||
CPU_CFLAGS = -mcpu=arm920 -mstructure-size-boundary=8 -msoft-float
|
||||
CPU_CFLAGS = -mcpu=arm920 -mstructure-size-boundary=8
|
||||
#CPU_CFLAGS += -msoft-float
|
||||
|
||||
# optimize flag: typically -0, could use -O4 or -fast
|
||||
# -O4 is ok for RTEMS
|
||||
|
||||
@@ -15,7 +15,8 @@ RTEMS_BSP_FAMILY=csb337
|
||||
# This contains the compiler options necessary to select the CPU model
|
||||
# and (hopefully) optimize for it.
|
||||
#
|
||||
CPU_CFLAGS = -mcpu=arm920 -mstructure-size-boundary=8 -msoft-float
|
||||
CPU_CFLAGS = -mcpu=arm920 -mstructure-size-boundary=8
|
||||
CPU_CFLAGS += -msoft-float
|
||||
|
||||
# optimize flag: typically -0, could use -O4 or -fast
|
||||
# -O4 is ok for RTEMS
|
||||
|
||||
@@ -15,7 +15,8 @@ RTEMS_BSP_FAMILY=edb7312
|
||||
# This contains the compiler options necessary to select the CPU model
|
||||
# and (hopefully) optimize for it.
|
||||
#
|
||||
CPU_CFLAGS = -mcpu=$(RTEMS_CPU_MODEL) -mstructure-size-boundary=8 -msoft-float
|
||||
CPU_CFLAGS = -mcpu=$(RTEMS_CPU_MODEL) -mstructure-size-boundary=8
|
||||
# CPU_CFLAGS += -msoft-float
|
||||
|
||||
# optimize flag: typically -0, could use -O4 or -fast
|
||||
# -O4 is ok for RTEMS
|
||||
|
||||
@@ -18,7 +18,7 @@ RTEMS_BSP_FAMILY=jmr3904
|
||||
# gcc 2.95.x and 3.0
|
||||
#CPU_CFLAGS=-m3900 -G0
|
||||
# gcc 3.1 and newer
|
||||
CPU_CFLAGS=-march=r3900 -G0
|
||||
CPU_CFLAGS=-march=r3900 -Wa,-xgot -G0
|
||||
|
||||
# optimize flag: typically -0, could use -O4 or -fast
|
||||
# -O4 is ok for RTEMS
|
||||
@@ -29,7 +29,7 @@ CFLAGS_OPTIMIZE_V=-O2 -g
|
||||
# will be able to override parts of the compilers specs and link using gcc.
|
||||
|
||||
define make-exe
|
||||
$(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) \
|
||||
$(LINK.c) $(AM_CFLAGS) -G0 $(AM_LDFLAGS) \
|
||||
$(LDLIBS) -o $@ \
|
||||
$(LINK_OBJS) $(LINK_LIBS)
|
||||
$(NM) -g -n $@ > $(basename $@).num
|
||||
|
||||
@@ -8,7 +8,9 @@ RTEMS_CPU_MODEL=i486dx
|
||||
# gcc 2.95.x and 3.0
|
||||
#CPU_CFLAGS = -m486
|
||||
# gcc 3.1 and newer
|
||||
CPU_CFLAGS=-mcpu=i486
|
||||
# CPU_CFLAGS=-mcpu=i486
|
||||
# gcc 4.0 and newer
|
||||
CPU_CFLAGS=-mtune=i486
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/pc386.cfg
|
||||
|
||||
|
||||
@@ -8,7 +8,9 @@ RTEMS_CPU_MODEL=pentium
|
||||
# gcc 2.95.x and 3.0
|
||||
#CPU_CFLAGS = -mpentium
|
||||
# gcc 3.1 and newer
|
||||
CPU_CFLAGS=-mcpu=pentium
|
||||
# CPU_CFLAGS=-mcpu=pentium
|
||||
# gcc 4.0 and newer
|
||||
CPU_CFLAGS=-mtune=pentium
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/pc386.cfg
|
||||
|
||||
|
||||
@@ -8,7 +8,9 @@ RTEMS_CPU_MODEL=pentiumpro
|
||||
# gcc 2.95.x and 3.0
|
||||
#CPU_CFLAGS = -mpentiumpro
|
||||
# gcc 3.1 and newer
|
||||
CPU_CFLAGS=-mcpu=pentiumpro
|
||||
# CPU_CFLAGS=-mcpu=pentiumpro
|
||||
# gcc 4.0 and newer
|
||||
CPU_CFLAGS=-mtune=pentiumpro
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/pc386.cfg
|
||||
|
||||
|
||||
@@ -5,6 +5,9 @@
|
||||
#
|
||||
|
||||
RTEMS_CPU_MODEL=pentium
|
||||
CPU_CFLAGS = -mcpu=k6
|
||||
# gcc 3.1 and newer
|
||||
# CPU_CFLAGS = -mcpu=k6
|
||||
# gcc 4.0 and newer
|
||||
CPU_CFLAGS = -mtune=k6
|
||||
|
||||
include $(RTEMS_ROOT)/make/custom/pc386.cfg
|
||||
|
||||
@@ -16,7 +16,7 @@ RTEMS_BSP_FAMILY=vegaplus
|
||||
# and (hopefully) optimize for it.
|
||||
#
|
||||
#CPU_CFLAGS = -mcpu=arm7tdmi
|
||||
CPU_CFLAGS = -msoft-float
|
||||
# CPU_CFLAGS = -msoft-float
|
||||
|
||||
# optimize flag: typically -0, could use -O4 or -fast
|
||||
# -O4 is ok for RTEMS
|
||||
|
||||
Reference in New Issue
Block a user