summaryrefslogtreecommitdiff
path: root/lang/icc7/files/patch-icpc
blob: a1e3f2685e08bca9eac2c89d8d69a562da036168 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
--- opt/intel/compiler60/ia32/bin/icpc.orig	Fri Sep  6 02:18:03 2002
+++ opt/intel/compiler60/ia32/bin/icpc	Tue Sep 10 18:32:59 2002
@@ -1,29 +1,42 @@
 #!/bin/sh
 
-INTEL_LICENSE_FILE=<INSTALLDIR>/licenses;
+PREFIX=@@PREFIX@@
+export PREFIX;
+INTEL_LICENSE_FILE=${PREFIX}/intel/licenses;
 export INTEL_LICENSE_FILE;
 
 if [ -z LD_LIBRARY_PATH ]
 then 
- LD_LIBRARY_PATH=<INSTALLDIR>/compiler60/ia32/lib;
+ LD_LIBRARY_PATH=${PREFIX}/intel/compiler60/ia32/lib;
 else
- LD_LIBRARY_PATH=<INSTALLDIR>/compiler60/ia32/lib:$LD_LIBRARY_PATH
+ LD_LIBRARY_PATH=${PREFIX}/intel/compiler60/ia32/lib:$LD_LIBRARY_PATH
 fi
 export LD_LIBRARY_PATH;
 
 if [ -z PATH ]
 then
- PATH=<INSTALLDIR>/compiler60/ia32/bin;
+ PATH=${PREFIX}/intel/compiler60/ia32/bin;
 else
- PATH=<INSTALLDIR>/compiler60/ia32/bin:$PATH;
+ PATH=${PREFIX}/intel/compiler60/ia32/bin:$PATH;
 fi
 export PATH;
 
-export -n IA32ROOT; unset IA32ROOT;
-
 if [ $# != 0 ]
 then
- exec -a "<INSTALLDIR>/compiler60/ia32/bin/icpc" <INSTALLDIR>/compiler60/ia32/bin/icpcbin "$@";
+ i=0
+ argc=$#
+ while [ $i -lt $argc ] ; do
+  val1=$1
+  shift
+  val2=${val1#"-openmp"}
+  if [ ${#val1} -gt ${#val2} ] || [ ${val1} = "-parallel" ] ; then
+   echo "Sorry, option '$val1' is not supported on FreeBSD."
+   exit 1
+  fi
+  set -- "$@" "$val1"
+  i=$(($i+1))
+ done
+ exec ${PREFIX}/intel/compiler60/ia32/bin/icpcbin "$@";
 else
- exec -a "<INSTALLDIR>/compiler60/ia32/bin/icpc" <INSTALLDIR>/compiler60/ia32/bin/icpcbin;
+ exec ${PREFIX}/intel/compiler60/ia32/bin/icpcbin;
 fi