-
Notifications
You must be signed in to change notification settings - Fork 120
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
MacOS Big Sur + Erlang 22.3 + AutoConf -> cannot find required auxiliary files: install-sh config.guess config.sub #195
Comments
Related conversation at https://elixirforum.com/t/erlang-otp-22-3-4-17-released |
i solved this issue by uninstalling autoconf with homebrew then manually installing autoconf 2.69 with
|
Works for me as well on:
where previously for 21.0.5, I have the following errors:
where 23.3.1 works for me without downgrading |
I had similar issues with |
For y'all Mac users, I hacked my way to a solution for OTP 21, which has the same problem...
|
Anyone else having the issue with erlang 23?
|
@kylesmith13 Where did you install autoconf manually? EDIT: Oh it actually works just installing autoconf in any directory. Which you seem to be able to delete after wards |
I manually edited the autoconf formula to install autoconf 2.69 with brew. Here's a gist with it: https://gist.github.com/oriolgual/2f881fa3a151dd5f643f755ddcf2a0bc |
My workaround, without removing or overwriting my existing copy of autoconf. Extract it, configure using
|
There is a specific formulae for this so you can just execute brew install [email protected] && \
brew link --overwrite [email protected] && \
autoconf -V |
I had the same issue after upgrading an elixir application first to erlang What worked however was:
Hope that helps someone. |
initially having the same issue after updating to BigSur 11.4 and updating cli for xcode and brew upgrade
tried the workaround as described above (using autoconf 2.69). but am getting another issue when trying to build erlang
full log here otp_build_22.0.7.log attempting to build 24.0.2 fails but throws a different error anyone else experience this?
|
@lamboap I'm seeing the same issue as you building 24.0.2. Were you ever able to solve it? |
Trying what's been documented here asdf-vm/asdf-erlang#195
Closing as I believe @kylesmith13's answer and recent updates to kerl have resolved this. |
I have upgraded my OS yesterday and wanted to re-install Erlang
22.3.4.12
.It fails with the error
configure: error: cannot find required auxiliary files: install-sh config.guess config.sub
(full logs at https://gist.github.com/thbar/f2e0a503437c87816feb0b18e11d36a2).I have tried
KERL_CONFIGURE_OPTIONS=--disable-debug --without-javac
and the required dependencies are I believe installed.I've noticed that
autoconf
is at version2.71
, mentioning this since an issue on Arch (#189), I wonder if this is the same but haven't downgradedautoconf
with homebrew yet (I have to verify the correct way to do this).It is interesting that Erlang 23 will install properly, on the other hand.
I hoped to benefit from the precompiled binaries available since #190, but apparently the compilation kicks in.
The text was updated successfully, but these errors were encountered: