diff options
author | Marius Strobl <marius@FreeBSD.org> | 2004-11-02 23:27:26 +0000 |
---|---|---|
committer | Marius Strobl <marius@FreeBSD.org> | 2004-11-02 23:27:26 +0000 |
commit | 9bb80ef3fe66acb9035b8280e6ec85fa2fd2df05 (patch) | |
tree | 243481730e9ce42429309c1bb2b6ad78a5665b50 /lang/icc/files/patch-bin::icpc | |
parent | - Fix runtime error (diff) |
o Preliminary update to 8.1.022:
- For changes since the 8.0 series see the installed C++ReleaseNotes.htm
but note that information given there doesn't necessarily apply to ICC
on FreeBSD, e.g. -cxxlib-gcc isn't the default on FreeBSD yet and this
port also doesn't install the Eclipse and CDT IDEs.
- ICC now unfortunately requires emulators/linux_base-8.
- Works fine for compiling C source.
- A 6.0-current GENERIC kernel compiles and boots.
- The devel/stlport-icc port currently can't link the exception handling
testsuite with this ICC version (due to relying on a missbehaviour of
the old ICC versions) and has to be changed in a way that doesn't break
lang/icc7.
- Support for using the GCC-compatibility of ICC on FreeBSD and using
the GNU libstdc++ as the STL with ICC is in the works.
o Like with the system GCC, default to libpthread for the threads library
on FreeBSD >= 502102.
Approved by: netchild
In joint forces with: netchild
Notes
Notes:
svn path=/head/; revision=120672
Diffstat (limited to 'lang/icc/files/patch-bin::icpc')
-rw-r--r-- | lang/icc/files/patch-bin::icpc | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/lang/icc/files/patch-bin::icpc b/lang/icc/files/patch-bin::icpc index fa1c7824506d..2c1f4483b729 100644 --- a/lang/icc/files/patch-bin::icpc +++ b/lang/icc/files/patch-bin::icpc @@ -1,17 +1,20 @@ --- bin/icpc.orig Tue Dec 9 19:55:12 2003 +++ bin/icpc Tue Dec 9 20:12:01 2003 -@@ -1,6 +1,9 @@ +@@ -1,6 +1,12 @@ #!/bin/sh -if [ -z INTEL_LICENSE_FILE ] +ICC_LOCALBASE=%%ICC_LOCALBASE%% -+export ICC_LOCALBASE; ++export ICC_LOCALBASE ++ ++GXX_ROOT=<INSTALLDIR>/lib ++export GXX_ROOT + +if [ -z "$INTEL_LICENSE_FILE" ] then INTEL_LICENSE_FILE=<INSTALLDIR>/licenses; else -@@ -8,7 +11,7 @@ +@@ -8,7 +14,7 @@ fi export INTEL_LICENSE_FILE; @@ -20,7 +23,7 @@ then LD_LIBRARY_PATH=<INSTALLDIR>/lib; else -@@ -16,7 +19,7 @@ +@@ -16,7 +22,7 @@ fi export LD_LIBRARY_PATH; @@ -29,7 +32,7 @@ then PATH=<INSTALLDIR>/bin; else -@@ -24,11 +27,39 @@ +@@ -24,11 +30,39 @@ fi export PATH; |