Date: Thu, 14 Apr 2011 16:45:16 +0000 (UTC) From: Dimitry Andric <dim@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r220630 - head/gnu/usr.bin/cc/include Message-ID: <201104141645.p3EGjGrX040850@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: dim Date: Thu Apr 14 16:45:16 2011 New Revision: 220630 URL: http://svn.freebsd.org/changeset/base/220630 Log: 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@gmail.com> Modified: head/gnu/usr.bin/cc/include/Makefile Modified: head/gnu/usr.bin/cc/include/Makefile ============================================================================== --- head/gnu/usr.bin/cc/include/Makefile Thu Apr 14 16:19:41 2011 (r220629) +++ head/gnu/usr.bin/cc/include/Makefile Thu Apr 14 16:45:16 2011 (r220630) @@ -7,7 +7,7 @@ INCSDIR=${INCLUDEDIR}/gcc/${GCCVER} .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"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201104141645.p3EGjGrX040850>