FGMGIT
Hello everyone,
I’m working unfortunately or necessarily with MacOS 11 Big Sur. And tried to install Elixir Nerves 1.6.3 and uninstall Erlang 23 with Hombrew, according with Nerves 1.6.3 install documentation, it seems that is not possible to reinstall that version with asdf, kerl or brew, even building Erlang / OTP from scratch will not be possible for OTP 23.0.3.
It seems that the only version that builds for MacOSX 11 is Erlang/OTP24. With what you will have:
** (Mix) Major version mismatch between host and target Erlang/OTP versions
I have only been able to build Erlang on MacOSX 11 by following this bug note. But only in OTP 24.
and
If I try asdf or kerl to build 23.0.3:
checking OTP version... 23.0.3
configure: error:
You are natively building Erlang/OTP for a later version of MacOSX
than current version (11.0). You either need to
cross-build Erlang/OTP, or set the environment variable
MACOSX_DEPLOYMENT_TARGET to 11.0 (or a lower version).
Try to set MACOSX_DEPLOYMENT_TARGET to 11.0 or 10.5 doesn’t seems to work
export MACOSX_DEPLOYMENT_TARGET=11
Is there any advance with support for MacOS 11? or someone facing problems with erlang 23.0.3 in MacOS 11?
Trending in Questions
Other Trending Topics
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #library
- #deployment
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #elixirconf-us
- #blog-post
- #ai
- #elixir-ls
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 9- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
FGMGIT
UPDATE!!! To compile Erlang 23.0.3 from source yo can use “maint” brach, they rebased bugs related with MacOS 11 builds into that branch.
fireyang
you can use : brew install erlang
mikeway1
Brew Install consistently has a problem with late Erlang (23.0.4) and Elixir(10.0.4) installations. Erlang will run erl -v and shows OTP 22. When attempting to build (23.0.4) via asdf it fails stating I am trying to build with a later version of MacOS than 11. There is no later version.
Eshell v10.7.1 runs appropriately but Elixir crashes looking for some Elixir files.
I really want to use this package, any ideas?
smedegaard
got this problem after updating to Mac OS Big Sur. Ended up uninstalling my asdf version and installing with brew.
axelson
I’m not on Big Sur and haven’t tested this but I believe this kerl GitHub issue has a workaround for this issue: Configure error with erlang 23.0.3 in MacOS 11 (Big sur) · Issue #346 · kerl/kerl · GitHub
rodrigues
I’ve had this issue last week in Big Sur, indeed appending the
&& falseto that line inconfigure.inhelped fix itThis thread describes how to deal with it in the context of asdf builds:
https://github.com/asdf-vm/asdf-erlang/issues/161#issuecomment-731477842
axelson
Now that there’s a patch for Apply Erlang patch to build on OSX Big Sur by fhunleth · Pull Request #356 · kerl/kerl · GitHub (thanks @fhunleth
) hopefully this won’t be an issue for much longer. Although I’m not sure if ASDF needs a PR to pull in the latest kerl (or if a kerl release is needed).
kkempin
This is a workaround that I’ve figured out. It seems to work: Fix for Erlang installation with asdf on macOS 11 Big Sur - DEV Community
axelclark
I just installed erlang 23.2.1 with asdf in MacOS 11 (Big Sur) and didn’t have any issues. It looks like the issue is fixed (bumped kerl version to 2.0.2) with this commit. Thanks @fhunleth!