Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 14 Apr 2011 13:50:32 +0200
From:      Dimitry Andric <dim@FreeBSD.org>
To:        George Liaskos <geo.liaskos@gmail.com>
Cc:        freebsd-current@freebsd.org, kde@freebsd.org
Subject:   Re: KDE related compile errors on CURRENT.
Message-ID:  <4DA6DF88.2040005@FreeBSD.org>
In-Reply-To: <BANLkTik6uMoZre3xJzsy2HZsUrznD4CdkQ@mail.gmail.com>
References:  <BANLkTik6uMoZre3xJzsy2HZsUrznD4CdkQ@mail.gmail.com>

next in thread | previous in thread | raw e-mail | index | archive | help

[-- Attachment #1 --]
On 2011-04-14 10:58, George Liaskos wrote:
...
> More precisely, /usr/local/include/eigen2/Eigen/Core :
>
> 37     #ifdef __SSE3__
> 38       #include<pmmintrin.h>
> 39     #endif
> 40     #ifdef __SSSE3__
> 41       #include<tmmintrin.h>
> 42     #endif
>
> I have tmmintrin.h only under /usr/include/clang/2.9, using r220528 - amd64.

You can just copy /usr/src/contrib/gcc/config/i386/tmmintrin.h to
/usr/include/gcc/4.2 for now, or apply the attached patch and run "make
install" in /usr/src/gnu/usr.bin/cc/include.  I'll commit a fix to
-current tonight.

[-- Attachment #2 --]
Index: gnu/usr.bin/cc/include/Makefile
===================================================================
--- gnu/usr.bin/cc/include/Makefile	(revision 220620)
+++ gnu/usr.bin/cc/include/Makefile	(working copy)
@@ -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?4DA6DF88.2040005>