- Remove -mno-dsp from CFLAGS. MIPS DSP ASE is off by default

now (as it should be)
This commit is contained in:
gonzo 2009-07-13 23:03:44 +00:00
parent 184aeea6e9
commit e5adcbf739
3 changed files with 3 additions and 3 deletions

View File

@ -210,7 +210,7 @@ CFLAGS += -EL
LDFLAGS += -Wl,-EL
LD += -EL
. endif
CFLAGS += -msoft-float -G0 -mno-dsp -mabicalls
CFLAGS += -msoft-float -G0 -mabicalls
.endif
# NB: COPTFLAGS is handled in /usr/src/sys/conf/kern.pre.mk

View File

@ -44,7 +44,7 @@ MKMODULESENV+= MACHINE=${MACHINE} MACHINE_ARCH=${MACHINE_ARCH}
# We default to the MIPS32 ISA, if none specified in the
# kernel configuration file.
ARCH_FLAGS?=-march=mips32
EXTRA_FLAGS=-fno-pic -mno-abicalls -mno-dsp -G0
EXTRA_FLAGS=-fno-pic -mno-abicalls -G0
HACK_EXTRA_FLAGS=-shared
.if defined(TARGET_BIG_ENDIAN)

View File

@ -90,7 +90,7 @@ INLINE_LIMIT?= 15000
# disable MIPS DSP ASE Instruction set.
#
.if ${MACHINE_ARCH} == "mips"
CFLAGS+= -msoft-float -mno-dsp
CFLAGS+= -msoft-float
INLINE_LIMIT?= 8000
.endif