svn commit: r201903 - head/sys/conf

Warner Losh imp at FreeBSD.org
Sat Jan 9 17:21:36 UTC 2010


Author: imp
Date: Sat Jan  9 17:21:36 2010
New Revision: 201903
URL: http://svn.freebsd.org/changeset/base/201903

Log:
  Merge r201902 and r195669 from projects/mips into head by hand:
  
  r201902 | imp | 2010-01-09 10:16:19 -0700 (Sat, 09 Jan 2010) | 2 lines
  Fix comment, which was missed in an earlier commit...
  
  r195669 | gonzo | 2009-07-13 17:03:44 -0600 (Mon, 13 Jul 2009) | 3 lines
  - Remove -mno-dsp from CFLAGS. MIPS DSP ASE is off by default
     now (as it should be)

Modified:
  head/sys/conf/kern.mk

Modified: head/sys/conf/kern.mk
==============================================================================
--- head/sys/conf/kern.mk	Sat Jan  9 17:16:19 2010	(r201902)
+++ head/sys/conf/kern.mk	Sat Jan  9 17:21:36 2010	(r201903)
@@ -86,11 +86,10 @@ INLINE_LIMIT?=	15000
 .endif
 
 #
-# For MIPS we also tell gcc to use floating point emulation and 
-# disable MIPS DSP ASE Instruction set.
+# For MIPS we also tell gcc to use floating point emulation
 #
 .if ${MACHINE_ARCH} == "mips"
-CFLAGS+=	-msoft-float -mno-dsp
+CFLAGS+=	-msoft-float
 INLINE_LIMIT?=	8000
 .endif
 


More information about the svn-src-head mailing list