Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 15 May 2013 20:59:01 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org
Subject:   svn commit: r250677 - in stable: 7/gnu/usr.bin/cc/include 8/gnu/usr.bin/cc/include 9/gnu/usr.bin/cc/include
Message-ID:  <201305152059.r4FKx1o6000640@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: dim
Date: Wed May 15 20:59:00 2013
New Revision: 250677
URL: http://svnweb.freebsd.org/changeset/base/250677

Log:
  MFC r250393:
  
  When gcc 4.2.0 was imported, the 3DNow intrinsics header <mm3dnow.h> was
  not added to the list of intrinsics headers to install, so belatedly (5
  years :) add it.

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

Changes in other areas also in this revision:
Modified:
  stable/7/gnu/usr.bin/cc/include/Makefile
  stable/8/gnu/usr.bin/cc/include/Makefile
Directory Properties:
  stable/7/gnu/usr.bin/cc/include/   (props changed)
  stable/8/gnu/usr.bin/cc/include/   (props changed)

Modified: stable/9/gnu/usr.bin/cc/include/Makefile
==============================================================================
--- stable/9/gnu/usr.bin/cc/include/Makefile	Wed May 15 20:53:53 2013	(r250676)
+++ stable/9/gnu/usr.bin/cc/include/Makefile	Wed May 15 20:59:00 2013	(r250677)
@@ -7,7 +7,8 @@ INCSDIR=${INCLUDEDIR}/gcc/${GCCVER}
 .PATH: ${GCCDIR}/config/${GCC_CPU}
 
 .if ${TARGET_ARCH} == "i386" || ${TARGET_ARCH} == "amd64"
-INCS=	emmintrin.h mmintrin.h pmmintrin.h tmmintrin.h xmmintrin.h mm_malloc.h
+INCS=	emmintrin.h mmintrin.h mm3dnow.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?201305152059.r4FKx1o6000640>