macOS への Solidity の solc のソースからのビルド・インストール

NO IMAGE

solcをインストールする

version 1.3.0 (“Homecoming”)から、cpp-etehreumとsolcが分離されるようだ。それにより、インストールの仕方とかが変わった。
solcだけをインストールする場合は、solidityレポジトリからインストールする。
現時点(2016/08/06)では、brew install solc はまだできる状態ではない。(数日以内きるようになる?)

参考: Release Release 1.3.0 (“Homecoming”) · bobsummerwill/cpp-ethereum

経緯

brew update && brew upgradeがコケて、brew uninstall cpp-ethereumしたら、solcがいなくなって、cpp-ethereumをビルド・インストールしても solcが入らないので、しょうがなく solcをビルド・インストール

事前準備

brew update
brew upgrade

brew install boost --c++11             # this takes a while
brew install cmake cryptopp gmp

ソースの取得 & ビルド

git clone --recursive https://github.com/ethereum/solidity.git
cd solidity
mkdir build
cd build
cmake .. && make

インストール

make install
Install the project...
-- Install configuration: ""
-- Installing: /usr/local/lib/libdevcore.dylib
-- Installing: /usr/local/lib/libevmasm.dylib
-- Installing: /usr/local/lib/libsolidity.dylib
-- Installing: /usr/local/bin/solc
-- Installing: /usr/local/lib/liblll.dylib
-- Installing: /usr/local/bin/lllc

ようやくsolcがインストールされた。

参考

Installing Solidity — Solidity 0.2.0 documentation

by Bob Summerwill @bobsummerwill in gitter cpp-ethereum

See https://github.com/bobsummerwill/cpp-ethereum/releases/tag/v1.3.0 for release notes. cpp-ethereum and solidity have been decoupled.
See http://solidity.readthedocs.io/en/latest/installing-solidity.html for instructions on building/installing solidity.
There will be a new release of solidity reflecting this standalone change in the next few days.
Again – sorry for the confusion while we are transitioning.
We will get a new Homebrew tap set up for solc in parallel with the cpp-ethereum one. I think that is what most people actually want on macOS – brew install solc.
We’ve never had that very long-requested feature because of the entanglement between the codebases which we are undoing now. Sorry that you have been a victim of the break! We’re working to make the thing which you want

関連用語

  • Ethereum
     

免責事項

本記事に掲載されている記事の内容につきましては、正しい情報を提供することに務めてはおりますが、提供している記事の内容及び参考資料からいかなる損失や損害などの被害が発生したとしても、弊社では責任を負いかねます。実施される際には、法律事務所にご相談ください。

技術・サービス・実装方法等のレビュー、その他解説・分析・意見につきましてはblock-chani.jp運営者の個人的見解です。正確性・正当性を保証するものではありません。本記事掲載の記事内容のご利用は読者様個人の判断により自己責任でお願いいたします。

     

コンセンサス・ベイス(株)とブロックチェーン事業を行なってみませんか?

当サイトを運営するコンセンサス・ベイス株式会社は、2015年設立の国内で最も古いブロックチェーン専門企業です。これまでに、大手企業の顧客を中心に、日本トップクラスのブロックチェーンの開発・コンサルティング実績があります。

ブロックチェーンに関わるビジネスコンサル・システム開発・教育・講演などご希望でしたら、お気軽にお問い合わせください。

     
     

ブロックチェーン学習に最適の書籍の紹介

図解即戦力 ブロックチェーンのしくみと開発がこれ1冊でしっかりわかる教科書

ブロックチェーン イーサリアムへの入り口 第二版 (ブロックチェーン技術書籍)

本書は、ブロックチェーン技術に興味を持ったエンジニアや、その仕組みを学び、自分の仕事に活かしたいビジネスパーソンを対象にして、ブロックチェーンのコア技術とネットワーク維持の仕組みを平易な言葉で解説しています。この本を読んだうえで、実際にコードを書くような専門書、ブロックチェーンビジネスの解説書を読むことで、理解度が飛躍的に高まるでしょう。(はじめにより)

イーサリアム(Ethereum)カテゴリの最新記事