solidity/docs/installing-solidity.rst

451 lines
16 KiB
ReStructuredText
Raw Normal View History

2016-08-29 17:24:28 +00:00
.. index:: ! installing
.. _installing-solidity:
################################
Installing the Solidity Compiler
################################
2015-12-10 11:22:53 +00:00
2016-09-08 17:44:14 +00:00
Versioning
==========
2016-10-12 08:25:17 +00:00
Solidity versions follow `semantic versioning <https://semver.org>`_ and in addition to
2016-09-08 17:44:14 +00:00
releases, **nightly development builds** are also made available. The nightly builds
are not guaranteed to be working and despite best efforts they might contain undocumented
2016-10-26 17:43:51 +00:00
and/or broken changes. We recommend using the latest release. Package installers below
2016-09-13 11:13:21 +00:00
will use the latest release.
2016-09-08 17:44:14 +00:00
Remix
=====
2015-12-10 11:22:53 +00:00
*We recommend Remix for small contracts and for quickly learning Solidity.*
2019-05-13 12:22:58 +00:00
`Access Remix online <https://remix.ethereum.org/>`_, you do not need to install anything.
If you want to use it without connection to the Internet, go to
2018-08-24 07:01:54 +00:00
https://github.com/ethereum/remix-live/tree/gh-pages and download the ``.zip`` file as
2019-05-13 10:47:34 +00:00
explained on that page. Remix is also a convenient option for testing nightly builds
without installing multiple Solidity versions.
Further options on this page detail installing commandline Solidity compiler software
on your computer. Choose a commandline compiler if you are working on a larger contract
or if you require more compilation options.
.. _solcjs:
2016-05-19 17:27:57 +00:00
npm / Node.js
2015-12-10 11:22:53 +00:00
=============
Use ``npm`` for a convenient and portable way to install ``solcjs``, a Solidity compiler. The
2018-09-13 21:43:10 +00:00
`solcjs` program has fewer features than the ways to access the compiler described
further down this page. The
:ref:`commandline-compiler` documentation assumes you are using
the full-featured compiler, ``solc``. The usage of ``solcjs`` is documented inside its own
`repository <https://github.com/ethereum/solc-js>`_.
2015-12-10 11:22:53 +00:00
Note: The solc-js project is derived from the C++
`solc` by using Emscripten which means that both use the same compiler source code.
`solc-js` can be used in JavaScript projects directly (such as Remix).
Please refer to the solc-js repository for instructions.
2015-12-10 11:22:53 +00:00
.. code-block:: bash
2015-12-10 11:22:53 +00:00
npm install -g solc
.. note::
2015-12-10 11:22:53 +00:00
The commandline executable is named ``solcjs``.
The commandline options of ``solcjs`` are not compatible with ``solc`` and tools (such as ``geth``)
expecting the behaviour of ``solc`` will not work with ``solcjs``.
2015-12-10 11:22:53 +00:00
2016-11-24 22:46:37 +00:00
Docker
======
Docker images of Solidity builds are available using the ``solc`` image from the ``ethereum`` organisation.
Use the ``stable`` tag for the latest released version, and ``nightly`` for potentially unstable changes in the develop branch.
The Docker image runs the compiler executable, so you can pass all compiler arguments to it.
For example, the command below pulls the stable version of the ``solc`` image (if you do not have it already),
and runs it in a new container, passing the ``--help`` argument.
.. code-block:: bash
docker run ethereum/solc:stable --help
You can also specify release build versions in the tag, for example, for the 0.5.4 release.
.. code-block:: bash
docker run ethereum/solc:0.5.4 --help
To use the Docker image to compile Solidity files on the host machine mount a
local folder for input and output, and specify the contract to compile. For example.
2016-11-24 22:46:37 +00:00
.. code-block:: bash
2016-11-24 22:46:37 +00:00
docker run -v /local/path:/sources ethereum/solc:stable -o /sources/output --abi --bin /sources/Contract.sol
You can also use the standard JSON interface (which is recommended when using the compiler with tooling).
When using this interface it is not necessary to mount any directories.
.. code-block:: bash
2016-11-24 22:46:37 +00:00
docker run ethereum/solc:stable --standard-json < input.json > output.json
2016-11-24 22:46:37 +00:00
Linux packages
==============
2015-12-10 11:22:53 +00:00
Binary packages of Solidity are available at
`solidity/releases <https://github.com/ethereum/solidity/releases>`_.
We also have PPAs for Ubuntu, you can get the latest stable
version using the following commands:
.. code-block:: bash
sudo add-apt-repository ppa:ethereum/ethereum
sudo apt-get update
sudo apt-get install solc
The nightly version can be installed using these commands:
.. code-block:: bash
sudo add-apt-repository ppa:ethereum/ethereum
sudo add-apt-repository ppa:ethereum/ethereum-dev
sudo apt-get update
sudo apt-get install solc
2019-12-12 14:58:25 +00:00
We are also releasing a `snap package <https://snapcraft.io/>`_, which is
installable in all the `supported Linux distros <https://snapcraft.io/docs/core/install>`_. To
install the latest stable version of solc:
.. code-block:: bash
2017-08-02 07:53:07 +00:00
sudo snap install solc
2018-09-13 21:43:10 +00:00
If you want to help testing the latest development version of Solidity
with the most recent changes, please use the following:
.. code-block:: bash
2017-08-02 07:53:07 +00:00
sudo snap install solc --edge
.. note::
The ``solc`` snap uses strict confinement. This is the most secure mode for snap packages
but it comes with limitations, like accessing only the files in your ``/home`` and ``/media`` directories.
For more information, go to `Demystifying Snap Confinement <https://snapcraft.io/blog/demystifying-snap-confinement>`_.
Arch Linux also has packages, albeit limited to the latest development version:
.. code-block:: bash
pacman -S solidity
Gentoo Linux has an `Ethereum overlay <https://overlays.gentoo.org/#ethereum>`_ that contains a solidity package.
After the overlay is setup, ``solc`` can be installed in x86_64 architectures by:
.. code-block:: bash
emerge dev-lang/solidity
macOS packages
==============
We distribute the Solidity compiler through Homebrew
as a build-from-source version. Pre-built bottles are
currently not supported.
.. code-block:: bash
brew update
brew upgrade
brew tap ethereum/ethereum
brew install solidity
2019-12-12 14:58:25 +00:00
To install the most recent 0.4.x / 0.5.x version of Solidity you can also use ``brew install solidity@4``
and ``brew install solidity@5``, respectively.
2019-03-25 16:22:30 +00:00
If you need a specific version of Solidity you can install a
Homebrew formula directly from Github.
View
`solidity.rb commits on Github <https://github.com/ethereum/homebrew-ethereum/commits/master/solidity.rb>`_.
Copy the commit hash of the version you want and check it out on your machine.
.. code-block:: bash
git clone https://github.com/ethereum/homebrew-ethereum.git
cd homebrew-ethereum
git checkout <your-hash-goes-here>
Install it using ``brew``:
.. code-block:: bash
brew unlink solidity
2019-03-25 16:22:30 +00:00
# eg. Install 0.4.8
brew install solidity.rb
2015-12-10 11:22:53 +00:00
2016-08-29 17:24:28 +00:00
.. _building-from-source:
2015-12-10 11:22:53 +00:00
Building from Source
====================
Prerequisites - All Operating Systems
-------------------------------------
2015-12-10 11:22:53 +00:00
The following are dependencies for all builds of Solidity:
2018-09-30 13:02:40 +00:00
+-----------------------------------+-------------------------------------------------------+
| Software | Notes |
+===================================+=======================================================+
2019-08-09 09:28:22 +00:00
| `CMake`_ (version 3.9+) | Cross-platform build file generator. |
+-----------------------------------+-------------------------------------------------------+
| `Boost`_ (version 1.65+) | C++ libraries. |
+-----------------------------------+-------------------------------------------------------+
| `Git`_ | Command-line tool for retrieving source code. |
+-----------------------------------+-------------------------------------------------------+
2019-04-01 19:22:38 +00:00
| `z3`_ (version 4.6+, Optional) | For use with SMT checker. |
+-----------------------------------+-------------------------------------------------------+
| `cvc4`_ (Optional) | For use with SMT checker. |
2018-09-30 13:02:40 +00:00
+-----------------------------------+-------------------------------------------------------+
.. _cvc4: https://cvc4.cs.stanford.edu/web/
.. _Git: https://git-scm.com/download
.. _Boost: https://www.boost.org
.. _CMake: https://cmake.org/download/
.. _z3: https://github.com/Z3Prover/z3
2015-12-10 11:22:53 +00:00
.. note::
Solidity versions prior to 0.5.10 can fail to correctly link against Boost versions 1.70+.
A possible workaround is to temporarily rename ``<Boost install path>/lib/cmake/Boost-1.70.0``
prior to running the cmake command to configure solidity.
Starting from 0.5.10 linking against Boost 1.70+ should work without manual intervention.
2019-06-26 12:54:53 +00:00
Minimum compiler versions
^^^^^^^^^^^^^^^^^^^^^^^^^
The following C++ compilers and their minimum versions can build the Solidity codebase:
- `GCC <https://gcc.gnu.org>`_, version 5+
- `Clang <https://clang.llvm.org/>`_, version 3.4+
2020-07-22 14:22:21 +00:00
- `MSVC <https://visualstudio.microsoft.com/vs/>`_, version 2019+
2019-06-26 12:54:53 +00:00
Prerequisites - macOS
2016-08-24 20:33:59 +00:00
---------------------
2015-12-10 11:22:53 +00:00
For macOS builds, ensure that you have the latest version of
2016-08-24 20:33:59 +00:00
`Xcode installed <https://developer.apple.com/xcode/download/>`_.
This contains the `Clang C++ compiler <https://en.wikipedia.org/wiki/Clang>`_, the
2016-08-24 20:33:59 +00:00
`Xcode IDE <https://en.wikipedia.org/wiki/Xcode>`_ and other Apple development
2020-11-02 12:32:36 +00:00
tools that are required for building C++ applications on OS X.
2016-08-24 20:33:59 +00:00
If you are installing Xcode for the first time, or have just installed a new
version then you will need to agree to the license before you can do
command-line builds:
2015-12-10 11:22:53 +00:00
.. code-block:: bash
2015-12-10 11:22:53 +00:00
sudo xcodebuild -license accept
2015-12-10 11:22:53 +00:00
Our OS X build script uses `the Homebrew <https://brew.sh>`_
package manager for installing external dependencies.
Here's how to `uninstall Homebrew
<https://docs.brew.sh/FAQ#how-do-i-uninstall-homebrew>`_,
if you ever want to start again from scratch.
2016-05-13 14:32:35 +00:00
Prerequisites - Windows
2016-08-24 20:33:59 +00:00
-----------------------
2018-09-30 13:02:40 +00:00
You need to install the following dependencies for Windows builds of Solidity:
2018-05-02 13:46:52 +00:00
+-----------------------------------+-------------------------------------------------------+
| Software | Notes |
+===================================+=======================================================+
2020-07-22 14:22:21 +00:00
| `Visual Studio 2019 Build Tools`_ | C++ compiler |
2018-05-02 13:46:52 +00:00
+-----------------------------------+-------------------------------------------------------+
2020-07-22 14:22:21 +00:00
| `Visual Studio 2019`_ (Optional) | C++ compiler and dev environment. |
2018-05-02 13:46:52 +00:00
+-----------------------------------+-------------------------------------------------------+
If you already have one IDE and only need the compiler and libraries,
2020-07-22 14:22:21 +00:00
you could install Visual Studio 2019 Build Tools.
2018-05-02 13:46:52 +00:00
2020-07-22 14:22:21 +00:00
Visual Studio 2019 provides both IDE and necessary compiler and libraries.
So if you have not got an IDE and prefer to develop solidity, Visual Studio 2019
may be a choice for you to get everything setup easily.
2018-05-02 13:46:52 +00:00
Here is the list of components that should be installed
2020-07-22 14:22:21 +00:00
in Visual Studio 2019 Build Tools or Visual Studio 2019:
2018-05-02 13:46:52 +00:00
* Visual Studio C++ core features
2020-07-22 14:22:21 +00:00
* VC++ 2019 v141 toolset (x86,x64)
2018-05-02 13:46:52 +00:00
* Windows Universal CRT SDK
* Windows 8.1 SDK
* C++/CLI support
2020-07-22 14:22:21 +00:00
.. _Visual Studio 2019: https://www.visualstudio.com/vs/
.. _Visual Studio 2019 Build Tools: https://www.visualstudio.com/downloads/#build-tools-for-visual-studio-2019
2016-08-11 20:50:27 +00:00
Dependencies Helper Script
--------------------------
We have a helper script which you can use to install all required external dependencies
on macOS, Windows and on numerous Linux distros.
.. code-block:: bash
./scripts/install_deps.sh
Or, on Windows:
.. code-block:: bat
2020-07-22 14:22:21 +00:00
scripts\install_deps.ps1
Note that the latter command will install ``boost`` and ``cmake`` to the ``deps`` subdirectory, while the former command
will attempt to install the dependencies globally.
2018-09-30 13:02:40 +00:00
Clone the Repository
--------------------
To clone the source code, execute the following command:
.. code-block:: bash
git clone --recursive https://github.com/ethereum/solidity.git
cd solidity
If you want to help developing Solidity,
you should fork Solidity and add your personal fork as a second remote:
.. code-block:: bash
git remote add personal git@github.com:[username]/solidity.git
2020-06-15 13:44:44 +00:00
.. note::
This method will result in a prerelease build leading to e.g. a flag
being set in each bytecode produced by such a compiler.
If you want to re-build a released Solidity compiler, then
please use the source tarball on the github release page:
https://github.com/ethereum/solidity/releases/download/v0.X.Y/solidity_0.X.Y.tar.gz
(not the "Source code" provided by github).
Command-Line Build
------------------
2015-12-10 11:22:53 +00:00
**Be sure to install External Dependencies (see above) before build.**
2017-08-22 14:55:54 +00:00
Solidity project uses CMake to configure the build.
You might want to install ccache to speed up repeated builds.
CMake will pick it up automatically.
Building Solidity is quite similar on Linux, macOS and other Unices:
.. code-block:: bash
2015-12-10 11:22:53 +00:00
2016-08-04 09:04:13 +00:00
mkdir build
cd build
cmake .. && make
2015-12-10 11:22:53 +00:00
or even easier on Linux and macOS, you can run:
.. code-block:: bash
#note: this will install binaries solc and soltest at usr/local/bin
./scripts/build.sh
2019-06-19 09:03:10 +00:00
.. warning::
BSD builds should work, but are untested by the Solidity team.
And for Windows:
2015-12-10 11:22:53 +00:00
.. code-block:: bash
2015-12-10 11:22:53 +00:00
mkdir build
cd build
2020-07-22 14:22:21 +00:00
cmake -G "Visual Studio 16 2019 Win64" ..
In case you want to use the version of boost installed by ``./scripts/install_deps.ps1``, you will
additionally need to pass ``-DBoost_DIR="..\deps\boost\lib\cmake\Boost-*"`` and ``-DCMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded``
as arguments to the call to ``cmake``.
2020-07-22 14:22:21 +00:00
This should result in the creation of **solidity.sln** in that build directory.
Double-clicking on that file should result in Visual Studio firing up. We suggest building
2018-12-18 15:19:50 +00:00
**Release** configuration, but all others work.
Alternatively, you can build for Windows on the command-line, like so:
.. code-block:: bash
2018-12-18 15:19:50 +00:00
cmake --build . --config Release
2016-09-13 11:13:21 +00:00
2017-08-22 14:55:54 +00:00
CMake options
=============
If you are interested what CMake options are available run ``cmake .. -LH``.
2018-09-13 16:29:14 +00:00
.. _smt_solvers_build:
SMT Solvers
-----------
Solidity can be built against SMT solvers and will do so by default if
they are found in the system. Each solver can be disabled by a `cmake` option.
*Note: In some cases, this can also be a potential workaround for build failures.*
Inside the build folder you can disable them, since they are enabled by default:
.. code-block:: bash
# disables only Z3 SMT Solver.
cmake .. -DUSE_Z3=OFF
# disables only CVC4 SMT Solver.
cmake .. -DUSE_CVC4=OFF
# disables both Z3 and CVC4
cmake .. -DUSE_CVC4=OFF -DUSE_Z3=OFF
2017-01-17 12:32:07 +00:00
The version string in detail
============================
The Solidity version string contains four parts:
2017-03-16 00:43:25 +00:00
2017-01-17 12:32:07 +00:00
- the version number
- pre-release tag, usually set to ``develop.YYYY.MM.DD`` or ``nightly.YYYY.MM.DD``
- commit in the format of ``commit.GITHASH``
2018-09-13 21:43:10 +00:00
- platform, which has an arbitrary number of items, containing details about the platform and compiler
2017-01-17 12:32:07 +00:00
If there are local modifications, the commit will be postfixed with ``.mod``.
2017-01-17 13:01:11 +00:00
These parts are combined as required by Semver, where the Solidity pre-release tag equals to the Semver pre-release
and the Solidity commit and platform combined make up the Semver build metadata.
A release example: ``0.4.8+commit.60cc1668.Emscripten.clang``.
2017-01-17 12:32:07 +00:00
A pre-release example: ``0.4.9-nightly.2017.1.17+commit.6ecb4aa3.Emscripten.clang``
2016-09-13 11:13:21 +00:00
Important information about versioning
======================================
After a release is made, the patch version level is bumped, because we assume that only
patch level changes follow. When changes are merged, the version should be bumped according
to semver and the severity of the change. Finally, a release is always made with the version
of the current nightly build, but without the ``prerelease`` specifier.
Example:
2016-09-23 16:27:23 +00:00
0. the 0.4.0 release is made
1. nightly build has a version of 0.4.1 from now on
2. non-breaking changes are introduced - no change in version
3. a breaking change is introduced - version is bumped to 0.5.0
4. the 0.5.0 release is made
2016-09-13 11:13:21 +00:00
2017-03-16 00:42:42 +00:00
This behaviour works well with the :ref:`version pragma <version_pragma>`.