CFLAGS_OPTIMIZE_V = -O2

This commit is contained in:
Ralf Corsepius
2007-01-17 16:52:16 +00:00
parent adac8ab996
commit 9e53ee2ca6
4 changed files with 7 additions and 7 deletions

View File

@@ -19,7 +19,7 @@ RTEMS_BSP_FAMILY=armulator
# CPU_CFLAGS = -msoft-float
# optimize flag: typically -O2
CFLAGS_OPTIMIZE_V=-O4
CFLAGS_OPTIMIZE_V=-O2
define make-exe
$(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $@ \

View File

@@ -13,8 +13,8 @@ CPU_CFLAGS = -mcpu=32
RTEMS_BSP_FAMILY=c4xsim
# optimize flag: typically -O2
# -O4 is broken for the moment on the C4x gcc
#CFLAGS_OPTIMIZE_V=-O4
# -O2 is broken for the moment on the C4x gcc
#CFLAGS_OPTIMIZE_V=-O2
CFLAGS_OPTIMIZE_V=-O1
# this target has no start file

View File

@@ -13,8 +13,8 @@ CPU_CFLAGS=-mcpu=40 #-msmall
RTEMS_BSP_FAMILY=c4xsim
# optimize flag: typically -O2
# -O4 is broken for the moment on the C4x gcc
#CFLAGS_OPTIMIZE_V=-O4
# -O2 is broken for the moment on the C4x gcc
#CFLAGS_OPTIMIZE_V=-O2
CFLAGS_OPTIMIZE_V=-O1
# this target has no start file

View File

@@ -15,10 +15,10 @@ RTEMS_BSP_FAMILY=gp32
# This contains the compiler options necessary to select the CPU model
# and (hopefully) optimize for it.
#
CPU_CFLAGS = -mcpu=arm920t -mstructure-size-boundary=32 -O3
CPU_CFLAGS = -mcpu=arm920t -mstructure-size-boundary=32
# optimize flag: typically -O2
CFLAGS_OPTIMIZE_V=
CFLAGS_OPTIMIZE_V= -O2
define make-exe
$(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $@ \