aboutsummaryrefslogtreecommitdiff
path: root/lang/icc7/files/patch-icc
diff options
context:
space:
mode:
Diffstat (limited to 'lang/icc7/files/patch-icc')
-rw-r--r--lang/icc7/files/patch-icc24
1 files changed, 24 insertions, 0 deletions
diff --git a/lang/icc7/files/patch-icc b/lang/icc7/files/patch-icc
new file mode 100644
index 000000000000..a6aeaf03bb9c
--- /dev/null
+++ b/lang/icc7/files/patch-icc
@@ -0,0 +1,24 @@
+--- opt/intel/compiler60/ia32/bin/icc.orig Tue Aug 6 04:34:18 2002
++++ opt/intel/compiler60/ia32/bin/icc Tue Aug 6 04:46:51 2002
+@@ -23,6 +23,21 @@
+
+ if [ $# != 0 ]
+ then
++ i=0
++ argc=$#
++ while [ $i -lt $argc ] ; do
++ val1=$1
++ shift
++ for s in .C .cc .cpp .cxx .c++; do
++ val2=${val1%$s}
++ if [ ${#val1} -gt ${#val2} ] ; then
++ echo "Please use icpc to compile C++ source."
++ exit 1
++ fi
++ done
++ set -- "$@" "$val1"
++ i=$(($i+1))
++ done
+ exec -a "<INSTALLDIR>/compiler60/ia32/bin/icc" <INSTALLDIR>/compiler60/ia32/bin/iccbin "$@";
+ else
+ exec -a "<INSTALLDIR>/compiler60/ia32/bin/icc" <INSTALLDIR>/compiler60/ia32/bin/iccbin;