diff options
author | RJ Catalano <rj@monax.io> | 2017-02-03 09:13:59 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-03 09:13:59 +0800 |
commit | ab54cd100ec11e82f6e7c3405356fbc48fd2ed8c (patch) | |
tree | 4fa8048b22f8289cedb84e4281228113875920dd /docs | |
parent | 5ce79609a42d3361122833047d497c07c8c36980 (diff) | |
parent | 60e884b0a39a5f116291ae03e98b228847831f2d (diff) | |
download | dexon-solidity-ab54cd100ec11e82f6e7c3405356fbc48fd2ed8c.tar.gz dexon-solidity-ab54cd100ec11e82f6e7c3405356fbc48fd2ed8c.tar.zst dexon-solidity-ab54cd100ec11e82f6e7c3405356fbc48fd2ed8c.zip |
Merge pull request #1642 from VoR0220/implementBuildScript
implement a build script
Diffstat (limited to 'docs')
-rw-r--r-- | docs/installing-solidity.rst | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/docs/installing-solidity.rst b/docs/installing-solidity.rst index 66e8038f..44a2d45f 100644 --- a/docs/installing-solidity.rst +++ b/docs/installing-solidity.rst @@ -198,7 +198,14 @@ Building Solidity is quite similar on Linux, macOS and other Unices: cd build cmake .. && make -And even on Windows: +or even easier: + +.. code:: bash + + #note: this will install binaries solc and soltest at usr/local/bin + ./scripts/build.sh + +And even for Windows: .. code:: bash @@ -251,4 +258,4 @@ Example: 3. a breaking change is introduced - version is bumped to 0.5.0 4. the 0.5.0 release is made -This behaviour works well with the version pragma. +This behaviour works well with the version pragma.
\ No newline at end of file |