diff options
author | ahze <ahze@FreeBSD.org> | 2005-02-21 19:06:30 +0800 |
---|---|---|
committer | ahze <ahze@FreeBSD.org> | 2005-02-21 19:06:30 +0800 |
commit | aff9bf1055b0b6d866287c040eafa4bd8d66bf86 (patch) | |
tree | 1185f808a9ded40e5bae992036b926d5b7aee034 /devel | |
parent | 1e5f5d8644397c938b1c22beecbda796a483911a (diff) | |
download | freebsd-ports-gnome-aff9bf1055b0b6d866287c040eafa4bd8d66bf86.tar.gz freebsd-ports-gnome-aff9bf1055b0b6d866287c040eafa4bd8d66bf86.tar.zst freebsd-ports-gnome-aff9bf1055b0b6d866287c040eafa4bd8d66bf86.zip |
- Add a note to icc users about adding LOCALBASE/intel_cc_80/bin to CCACHE_PATH
Diffstat (limited to 'devel')
-rw-r--r-- | devel/ccache/Makefile | 3 | ||||
-rw-r--r-- | devel/ccache/files/ccache-howto-freebsd.txt.in | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/devel/ccache/Makefile b/devel/ccache/Makefile index 7bab2a78f9c8..8dae8acbdb14 100644 --- a/devel/ccache/Makefile +++ b/devel/ccache/Makefile @@ -62,7 +62,8 @@ post-extract: .if !defined(WITHOUT_COMPILER_LINKS) @${SED} -e 's|%%CCACHE_COMPILERS%%|${CCACHE_COMPILERS}|; \ s|%%PREFIX%%|${PREFIX}|; s|%%CCLINKDIR%%|${CCLINKDIR}|; \ - s|%%LOCALBASE%%|${LOCALBASE}|' \ + s|%%LOCALBASE%%|${LOCALBASE}|; \ + s|%%ICCPREFIX%%|${LOCALBASE}/intel_cc_80/bin|' \ ${FILESDIR}/${HOWTO}.in > ${WRKDIR}/${HOWTO} @${SED} -e 's|%%HOWTO%%|${HOWTO}|; \ s|%%DOCSDIR%%|${DOCSDIR}|' \ diff --git a/devel/ccache/files/ccache-howto-freebsd.txt.in b/devel/ccache/files/ccache-howto-freebsd.txt.in index 4c9a3be55a11..6f9f75f12475 100644 --- a/devel/ccache/files/ccache-howto-freebsd.txt.in +++ b/devel/ccache/files/ccache-howto-freebsd.txt.in @@ -25,6 +25,9 @@ For csh/tcsh Add the following to /etc/csh.cshrc: setenv PATH %%PREFIX%%/libexec/ccache/:$PATH setenv CCACHE_PATH /usr/bin:%%LOCALBASE%%/bin +For icc users: + Add %%ICCPREFIX%% to CCACHE_PATH + -- To use distcc: |