svn commit: r207642 - stable/6/share/mk

Xin LI delphij at FreeBSD.org
Wed May 5 00:39:50 UTC 2010


Author: delphij
Date: Wed May  5 00:39:50 2010
New Revision: 207642
URL: http://svn.freebsd.org/changeset/base/207642

Log:
  MFC r206973:
  
  When CPUTYPE is defined to any value, on amd64 platform "mmx" is
  available through MACHINE_CPU, indicating the CPU supports that
  feature, as done by revision 138685.
  
  This changeset adds "mmx" into the default amd64 MACHINE_CPU list
  when no CPUTYPE is specified to provide consistent behavior.
  
  PR:		amd64/145593
  Submitted by:	mm

Modified:
  stable/6/share/mk/bsd.cpu.mk
Directory Properties:
  stable/6/share/mk/   (props changed)

Modified: stable/6/share/mk/bsd.cpu.mk
==============================================================================
--- stable/6/share/mk/bsd.cpu.mk	Wed May  5 00:39:06 2010	(r207641)
+++ stable/6/share/mk/bsd.cpu.mk	Wed May  5 00:39:50 2010	(r207642)
@@ -12,7 +12,7 @@ MACHINE_CPU = i486
 _CPUCFLAGS = -mcpu=ev4 -mtune=ev5
 MACHINE_CPU = ev4
 . elif ${MACHINE_ARCH} == "amd64"
-MACHINE_CPU = amd64 sse2 sse
+MACHINE_CPU = amd64 sse2 sse mmx
 . elif ${MACHINE_ARCH} == "ia64"
 MACHINE_CPU = itanium
 . elif ${MACHINE_ARCH} == "sparc64"


More information about the svn-src-all mailing list