diff options
author | Pranav Kant <pranavk@libreoffice.org> | 2016-01-18 01:12:37 +0530 |
---|---|---|
committer | Katarina Behrens <Katarina.Behrens@cib.de> | 2016-02-14 13:44:55 +0000 |
commit | b7c807faeb18a87dc8ad5bc1ae68ca5cb3999a66 (patch) | |
tree | 9c6760c6be419b127089839bfb5fe4777c101ba2 | |
parent | 45cdf264415764a0751fdb6deb55c02096d2eca3 (diff) |
configure: Add a missing option, --with-gcc-home
--enable-icecream option mentions this in its documentation, but
it had been missing till now.
This option is also necessary when operating systems installs
icecc wrappers in locations other than /usr/lib/icecc, /opt/icecream,
which is what GCC_HOME gets set to by default with --enable-icecream.
Change-Id: Ib2b6ec010271467949e7ac9f1d01624cb360c5a5
Reviewed-on: https://gerrit.libreoffice.org/21551
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Katarina Behrens <Katarina.Behrens@cib.de>
-rw-r--r-- | configure.ac | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 07bf6fd7a793..bf96369e419c 100644 --- a/configure.ac +++ b/configure.ac @@ -1514,6 +1514,13 @@ dnl =================================================================== dnl Optional Packages (--with/without-) dnl =================================================================== +AC_ARG_WITH(gcc-home, + AS_HELP_STRING([--with-gcc-home], + [Specify the location of gcc/g++ manually. This can be used in conjunction + with --enable-icecream when icecream gcc/g++ wrappers are installed in a + non-default path.]), +,) + AC_ARG_WITH(gnu-patch, AS_HELP_STRING([--with-gnu-patch], [Specify location of GNU patch on Solaris or FreeBSD.]), |