aboutsummaryrefslogtreecommitdiff
path: root/share/mk/bsd.sys.mk
diff options
context:
space:
mode:
authorTom Rhodes <trhodes@FreeBSD.org>2004-03-12 21:36:12 +0000
committerTom Rhodes <trhodes@FreeBSD.org>2004-03-12 21:36:12 +0000
commit06d6e4fcfeea94893ddd82264e531131939f2b80 (patch)
tree92d1817354827751fba22c16fc2fbfed658a79c4 /share/mk/bsd.sys.mk
parent7700eb86e7740ce5ea0180c6c39e11e816f265c4 (diff)
downloadsrc-06d6e4fcfeea94893ddd82264e531131939f2b80.tar.gz
src-06d6e4fcfeea94893ddd82264e531131939f2b80.zip
This are the build infrastructure changes to allow to use the
Intel C/C++ compiler (lang/icc) to build the kernel. The icc CPUTYPE CFLAGS use icc v7 syntax, icc v8 moans about them, but doesn't abort. They also produce CPU specific code (new instructions of the CPU, not only CPU specific scheduling), so if you get coredumps with signal 4 (SIGILL, illegal instruction) you've used the wrong CPUTYPE. Incarnations of this patch survive gcc compiles and my make universe. I use it on my desktop. To use it update share/mk, add /usr/local/intel/compiler70/ia32/bin (icc v7, works) or /usr/local/intel_cc_80/bin (icc v8, doesn't work) to your PATH, make sure you have a new kernel compile directory (e.g. MYKERNEL_icc) and run CFLAGS="-O2 -ip" CC=icc make depend CFLAGS="-O2 -ip" CC=icc make in it. Don't compile with -ipo, the build infrastructure uses ld directly to link the kernel and the modules, but -ipo needs the link step to be performed with Intel's linker. Problems with icc v8: - panic: npx0 cannot be emulated on an SMP system - UP: first start of /bin/sh results in a FP exception Parts of this commit contains suggestions or submissions from Marius Strobl <marius@alchemy.franken.de>. Reviewed by: silence on -arch Submitted by: netchild
Notes
Notes: svn path=/head/; revision=126890
Diffstat (limited to 'share/mk/bsd.sys.mk')
-rw-r--r--share/mk/bsd.sys.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/mk/bsd.sys.mk b/share/mk/bsd.sys.mk
index 587bc84099e9..3821801a7f6d 100644
--- a/share/mk/bsd.sys.mk
+++ b/share/mk/bsd.sys.mk
@@ -8,7 +8,7 @@
# for GCC: http://gcc.gnu.org/onlinedocs/gcc-3.0.4/gcc_3.html#IDX143
-.if !defined(NO_WARNS)
+.if !defined(NO_WARNS) && ${CC} != "icc"
. if defined(WARNS)
. if ${WARNS} > 0
CWARNFLAGS += -Wsystem-headers