diff options
author | obrien <obrien@FreeBSD.org> | 2010-05-12 19:59:32 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2010-05-12 19:59:32 +0000 |
commit | 32d515bca08d5a57d36e859c775db4f8d1d3f789 (patch) | |
tree | 079227511007b180b9d7535b8f0783545e890925 /ObsoleteFiles.inc | |
parent | bb926aa7a5eb2340e321ec4c8579a65e08a0994a (diff) | |
download | FreeBSD-src-32d515bca08d5a57d36e859c775db4f8d1d3f789.zip FreeBSD-src-32d515bca08d5a57d36e859c775db4f8d1d3f789.tar.gz |
Non-GCC gcc compatible compilers may provide the same multimedia intrinsic
headers as GCC, but of their own implementation. So put the GCC ones into
their own header "namespace".
Requested by: ed
Diffstat (limited to 'ObsoleteFiles.inc')
-rw-r--r-- | ObsoleteFiles.inc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ObsoleteFiles.inc b/ObsoleteFiles.inc index 2d4624d..fd0cbf7 100644 --- a/ObsoleteFiles.inc +++ b/ObsoleteFiles.inc @@ -14,6 +14,24 @@ # The file is partitioned: OLD_FILES first, then OLD_LIBS and OLD_DIRS last. # +# 20100511: move GCC-specific headers to /usr/include/gcc +.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" +OLD_FILES+=usr/include/emmintrin.h +OLD_FILES+=usr/include/mm_malloc.h +OLD_FILES+=usr/include/pmmintrin.h +OLD_FILES+=usr/include/xmmintrin.h +.endif +.if ${TARGET_ARCH} == "amd64" || ${TARGET_ARCH} == "i386" || ${TARGET_ARCH} == "arm" +OLD_FILES+=usr/include/mmintrin.h +.endif +.if ${TARGET_ARCH} == "ia64" +OLD_FILES+=usr/include/ia64intrin.h +.endif +.if ${TARGET_ARCH} == "powerpc" +OLD_FILES+=usr/include/altivec.h +OLD_FILES+=usr/include/ppc-asm.h +OLD_FILES+=usr/include/spe.h +.endif # 20100416: [mips] removed <machine/psl.h> .if ${TARGET_ARCH} == "mips" OLD_FILES+=usr/include/machine/psl.h |