svn commit: r221983 - stable/7/gnu/usr.bin/cc/include

Dimitry Andric dim at FreeBSD.org
Mon May 16 07:03:07 UTC 2011


Author: dim
Date: Mon May 16 07:03:06 2011
New Revision: 221983
URL: http://svn.freebsd.org/changeset/base/221983

Log:
  MFC r220630:
  
  In r219639, SSSE3 instruction set support was backported to our gcc.
  
  Therefore, we also need to install the new tmmintrin.h header containing
  the related intrinsic functions, similar to xmmintrin.h, emmintrin.h,
  etc.
  
  Reported by:	George Liaskos <geo.liaskos at gmail.com>

Modified:
  stable/7/gnu/usr.bin/cc/include/Makefile
Directory Properties:
  stable/7/gnu/usr.bin/cc/include/   (props changed)

Modified: stable/7/gnu/usr.bin/cc/include/Makefile
==============================================================================
--- stable/7/gnu/usr.bin/cc/include/Makefile	Mon May 16 07:02:41 2011	(r221982)
+++ stable/7/gnu/usr.bin/cc/include/Makefile	Mon May 16 07:03:06 2011	(r221983)
@@ -5,7 +5,7 @@
 .PATH: ${GCCDIR}/config/${GCC_CPU}
 
 .if ${TARGET_ARCH} == "i386" || ${TARGET_ARCH} == "amd64"
-INCS=	emmintrin.h mmintrin.h pmmintrin.h xmmintrin.h mm_malloc.h
+INCS=	emmintrin.h mmintrin.h pmmintrin.h tmmintrin.h xmmintrin.h mm_malloc.h
 .elif ${TARGET_ARCH} == "ia64"
 INCS=	ia64intrin.h
 .elif ${TARGET_ARCH} == "arm"


More information about the svn-src-all mailing list