You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by jd...@apache.org on 2017/04/18 16:48:26 UTC

kudu git commit: [docs] Add another workaround for macOS

Repository: kudu
Updated Branches:
  refs/heads/branch-1.3.x afc0f479b -> e8f346940


[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 <ad...@cloudera.com>
Tested-by: Kudu Jenkins
(cherry picked from commit 87bd862cb63785158affc065724b57bda7a5a7f4)
Reviewed-on: http://gerrit.cloudera.org:8080/6641
Reviewed-by: Todd Lipcon <to...@apache.org>
Reviewed-by: Jean-Daniel Cryans <jd...@apache.org>


Project: http://git-wip-us.apache.org/repos/asf/kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/e8f34694
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/e8f34694
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/e8f34694

Branch: refs/heads/branch-1.3.x
Commit: e8f34694015a4a31aa648da6536e48676163cd7f
Parents: afc0f47
Author: Jean-Daniel Cryans <jd...@apache.org>
Authored: Tue Mar 21 16:00:49 2017 -0700
Committer: Jean-Daniel Cryans <jd...@apache.org>
Committed: Tue Apr 18 16:27:10 2017 +0000

----------------------------------------------------------------------
 docs/installation.adoc | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/e8f34694/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.\u2002\u2002This 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.
 +