erlang 做兔肉要多长时间?

pw9qyyiw  于 2022-12-08  发布在  Erlang
关注(0)|答案(2)|浏览(184)

I tried installing rabbitmq using homebrew.
I have a MBP i7 and it is just sitting there for the past 5 minutes.

brew install rabbitmq
/usr/local/git/bin/git
==> Cloning git://github.com/erlang/otp.git
Updating /Users/bm/Library/Caches/Homebrew/erlang--git
==> Checking out tag OTP_R14B02
==> ./otp_build autoconf
==> ./configure --disable-debug --prefix=/usr/local/Cellar/erlang/R14B02 --enable-kernel-poll --enable-threads --enable-dynamic-ssl-lib --enable-smp-support -
==> touch lib/wx/SKIP
==> make

This is the second time, the first time I figured it was hung and I cancelled it.
Anyone tried installing it with homebrew? what could the issue be here?

vpfxa7rd

vpfxa7rd1#

在我的core 2 duo上,构建erlang花了15. 6分钟。
您应该会看到gcc等进程和/tmp/homebrew-erlang-*/中发生的内容

djp7away

djp7away2#

在我的mcbook pro核心二人组与8GB的内存和固态硬盘,它花了20分钟。我也杀死了它一次,因为我认为它卡住了。

Also installing dependencies: erlang
    /usr/local/bin/git
    ==> Cloning https://github.com/erlang/otp.git
    Updating /Users/daviddehghan/Library/Caches/Homebrew/erlang--git
    ==> Checking out tag OTP_R14B03
    ==> ./otp_build autoconf
    ==> ./configure --disable-debug --prefix=/usr/local/Cellar/erlang/R14B03 --enable-kernel-poll --enable-threads --enable-dynamic-ssl-lib --enable-smp-s
    ==> touch lib/wx/SKIP
    ==> make
    ==> make install
    ==> Downloading http://erlang.org/download/otp_doc_man_R14B03.tar.gz
    ######################################################################## 100.0%
    ==> Downloading http://erlang.org/download/otp_doc_html_R14B03.tar.gz
    ######################################################################## 100.0%
    /usr/local/Cellar/erlang/R14B03: 6985 files, 260M, built in 20.4 minutes
    ==> Downloading http://www.rabbitmq.com/releases/rabbitmq-server/v2.4.1/rabbitmq-server-2.4.1.tar.gz
    ######################################################################## 100.0%
    ==> Downloading patches
    ######################################################################## 100.0%
    ==> Patching
    patching file Makefile
    Hunk #1 succeeded at 262 (offset -5 lines).
    patching file Makefile
    patching file src/rabbit_networking.erl
    ==> make
    ==> make install
    ==> Caveats
    If this is your first install, automatically load on login with:
        mkdir -p ~/Library/LaunchAgents
        cp /usr/local/Cellar/rabbitmq/2.4.1/com.rabbitmq.rabbitmq-server.plist ~/Library/LaunchAgents/
        launchctl load -w ~/Library/LaunchAgents/com.rabbitmq.rabbitmq-server.plist

    If this is an upgrade and you already have the com.rabbitmq.rabbitmq-server.plist loaded:
        launchctl unload -w ~/Library/LaunchAgents/com.rabbitmq.rabbitmq-server.plist
        cp /usr/local/Cellar/rabbitmq/2.4.1/com.rabbitmq.rabbitmq-server.plist ~/Library/LaunchAgents/
        launchctl load -w ~/Library/LaunchAgents/com.rabbitmq.rabbitmq-server.plist

      To start rabbitmq-server manually:
        rabbitmq-server
    ==> Summary
    /usr/local/Cellar/rabbitmq/2.4.1: 115 files, 1.6M, built in 39 seconds

相关问题