aboutsummaryrefslogtreecommitdiffstats
path: root/src/libgcc
diff options
context:
space:
mode:
authorMichael Brown <mcb30@etherboot.org>2009-03-10 17:50:01 +0000
committerMichael Brown <mcb30@etherboot.org>2009-03-26 07:27:19 +0000
commit1c67623e37dada045e9b5d1f5e19b414cc79c3e3 (patch)
tree6baaac3371a85232dbfe0faa5e7530eb76fa7413 /src/libgcc
parent16aa435567ad6a82669864ba9c47ee534a03c296 (diff)
downloadipxe-1c67623e37dada045e9b5d1f5e19b414cc79c3e3.tar.gz
[build] Enable building with the Intel C compiler (icc)
Diffstat (limited to 'src/libgcc')
-rw-r--r--src/libgcc/icc.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/libgcc/icc.c b/src/libgcc/icc.c
new file mode 100644
index 000000000..7540bf0e8
--- /dev/null
+++ b/src/libgcc/icc.c
@@ -0,0 +1,8 @@
+/*
+ * Intel's compiler creates an implicit call to this function at the
+ * start of main().
+ *
+ */
+void __attribute__ (( cdecl )) __intel_new_proc_init ( void ) {
+ /* Do nothing */
+}