web-dev-qa-db-ja.com

OSX 10.15.4でasdfを使用してErlangをインストールできない

私は、osxでasdfを6か月以上使用したことで以前にはなかった問題に直面しています。 Erlang 21.3.7.1をインストールする必要があります。インストールすると、コンソールからこのエラー出力が表示されますが、正直に解決方法がわかりません。

Me@My-MacBook-Pro:~/Code/codebase|master
⇒  asdf install erlang 21.3.7.1
Downloading kerl...
Downloading OTP-21.3.7.1.tar.gz to /Users/Me/.asdf/plugins/erlang/kerl-home/archives
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100   124  100   124    0     0    523      0 --:--:-- --:--:-- --:--:--   523
100 51.5M    0 51.5M    0     0  8541k      0 --:--:--  0:00:06 --:--:-- 9657k
Extracting source code
Building Erlang/OTP 21.3.7.1 (asdf_21.3.7.1), please wait...
DOCUMENTATION INFORMATION (See: /Users/Me/.asdf/plugins/erlang/kerl-home/builds/asdf_21.3.7.1/otp_build_21.3.7.1.log)
 * documentation  :
 *                  fop is missing.
 *                  Using fakefop to generate placeholder PDF files.

Build failed.
 GEN obj/x86_64-Apple-darwin19.4.0/opt/MADE
 LD /Users/Me/.asdf/plugins/erlang/kerl-home/builds/asdf_21.3.7.1/otp_src_21.3.7.1/bin/x86_64-Apple-darwin19.4.0/erl_child_setup
ld: weak import of symbol '___darwin_check_fd_set_overflow' not supported because of option: -no_weak_imports for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
make[4]: *** [/Users/Me/.asdf/plugins/erlang/kerl-home/builds/asdf_21.3.7.1/otp_src_21.3.7.1/bin/x86_64-Apple-darwin19.4.0/erl_child_setup] Error 1
make[4]: *** Waiting for unfinished jobs....
make[3]: *** [opt] Error 2
make[2]: *** [opt] Error 2
make[1]: *** [smp] Error 2
make: *** [emulator_profile_generate] Error 2

Erlang/Elixir/asdfフォーラムで見つけたものは特に役に立ちませんでした。 asdfは自作でインストールされました。 ref:maintビルドをインストールして.tool-versionを一致するように変更できますが、これにより、Cryptoとopensslがインストールされているにもかかわらず見つからないという他の多くの問題が発生します。誰かがアイデアを持っていますか?

4
user3236418

カタリナにアップグレードした後、22.3.1をインストールしようとしましたが、それだけでは不十分でした。どういうわけかカタリナのアーランはOpenSSLを見つけることができませんでした。

私がしなければならなかったことは:

1)Erlang 22.3.1を既にアンインストールしている場合はアンインストールします。

asdf uninstall erlang 22.3.1

2)Xcodeを最新バージョンに更新して同意に同意する

Sudo xcodebuild -license 

3)セット--with-sslフラグ( asdf-erlang readmeからコピー

export KERL_CONFIGURE_OPTIONS="--without-javac --with-ssl=$(brew --prefix openssl)"

4)Erlangを再インストールします

asdf install erlang 22.3.1 
1
Tyler