Repository: kudu Updated Branches: refs/heads/master 4447803a2 -> 87bd862cb
[docs] Add another workaround for macOS I encountered an issue that was preventing me from building thirdparties and with Adar's help I found a way to get unstuck. This patch adds more instructions to our macOS installation instructions. Change-Id: I870189eddec0a2e34221b5bbdf85353a91fcf527 Reviewed-on: http://gerrit.cloudera.org:8080/6456 Reviewed-by: Adar Dembo <[email protected]> Tested-by: Kudu Jenkins Project: http://git-wip-us.apache.org/repos/asf/kudu/repo Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/87bd862c Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/87bd862c Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/87bd862c Branch: refs/heads/master Commit: 87bd862cb63785158affc065724b57bda7a5a7f4 Parents: 4447803 Author: Jean-Daniel Cryans <[email protected]> Authored: Tue Mar 21 16:00:49 2017 -0700 Committer: Jean-Daniel Cryans <[email protected]> Committed: Tue Mar 21 23:24:14 2017 +0000 ---------------------------------------------------------------------- docs/installation.adoc | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kudu/blob/87bd862c/docs/installation.adoc ---------------------------------------------------------------------- diff --git a/docs/installation.adoc b/docs/installation.adoc index f1f1753..8edc79f 100644 --- a/docs/installation.adoc +++ b/docs/installation.adoc @@ -578,6 +578,24 @@ $ git clean -fdx $ thirdparty/build-if-necessary.sh ---- + - Some combinations of Homebrew installations and system upgrades can result with a +different kind of error: ++ +---- +libtool: Version mismatch error.ââThis is libtool 2.4.6, but the +libtool: definition of this LT_INIT comes from libtool 2.4.2. +libtool: You should recreate aclocal.m4 with macros from libtool 2.4.6 +libtool: and run autoconf again. +---- ++ +As described in this link:https://github.com/Homebrew/legacy-homebrew/issues/43874[thread], +a possible fix is to uninstall and reinstall libtool: ++ +[source,bash] +---- +$ brew uninstall libtool && brew install libtool +---- + . Build Kudu. Choose a build directory for the intermediate output, which can be anywhere in your filesystem except for the `kudu` directory itself. +
