aboutsummaryrefslogtreecommitdiffstats
path: root/docs/using-the-compiler.rst
diff options
context:
space:
mode:
authorJonny Burger <jonathanburger11@gmail.com>2018-05-02 23:07:12 +0800
committerJonny Burger <jonathanburger11@gmail.com>2018-05-02 23:10:30 +0800
commit1367fedfd0fc1d83aa9d51d9fe9e31df1eb1ac2a (patch)
treebc24c624494ff568ed5d9994727d38ec5d7ddcba /docs/using-the-compiler.rst
parenta856135bbf709d17732ce610e086c2300783b0a9 (diff)
downloaddexon-solidity-1367fedfd0fc1d83aa9d51d9fe9e31df1eb1ac2a.tar
dexon-solidity-1367fedfd0fc1d83aa9d51d9fe9e31df1eb1ac2a.tar.gz
dexon-solidity-1367fedfd0fc1d83aa9d51d9fe9e31df1eb1ac2a.tar.bz2
dexon-solidity-1367fedfd0fc1d83aa9d51d9fe9e31df1eb1ac2a.tar.lz
dexon-solidity-1367fedfd0fc1d83aa9d51d9fe9e31df1eb1ac2a.tar.xz
dexon-solidity-1367fedfd0fc1d83aa9d51d9fe9e31df1eb1ac2a.tar.zst
dexon-solidity-1367fedfd0fc1d83aa9d51d9fe9e31df1eb1ac2a.zip
Improve documentation and CLI help for `--run` parameter
Diffstat (limited to 'docs/using-the-compiler.rst')
-rw-r--r--docs/using-the-compiler.rst11
1 files changed, 8 insertions, 3 deletions
diff --git a/docs/using-the-compiler.rst b/docs/using-the-compiler.rst
index df30b6b4..1d7cb97b 100644
--- a/docs/using-the-compiler.rst
+++ b/docs/using-the-compiler.rst
@@ -14,7 +14,9 @@ Using the Commandline Compiler
One of the build targets of the Solidity repository is ``solc``, the solidity commandline compiler.
Using ``solc --help`` provides you with an explanation of all options. The compiler can produce various outputs, ranging from simple binaries and assembly over an abstract syntax tree (parse tree) to estimations of gas usage.
-If you only want to compile a single file, you run it as ``solc --bin sourceFile.sol`` and it will print the binary. Before you deploy your contract, activate the optimizer while compiling using ``solc --optimize --bin sourceFile.sol``. If you want to get some of the more advanced output variants of ``solc``, it is probably better to tell it to output everything to separate files using ``solc -o outputDirectory --bin --ast --asm sourceFile.sol``.
+If you only want to compile a single file, you run it as ``solc --bin sourceFile.sol`` and it will print the binary. If you want to get some of the more advanced output variants of ``solc``, it is probably better to tell it to output everything to separate files using ``solc -o outputDirectory --bin --ast --asm sourceFile.sol``.
+
+Before you deploy your contract, activate the optimizer while compiling using ``solc --optimize --bin sourceFile.sol``. By default, the optimizer will optimize the contract for 200 runs. If you want to optimize for initial contract deployment and get the smallest output, set it to ``--runs=1``. If you expect many transactions and don't care for higher deployment cost and output size, set ``--runs`` to a high number.
The commandline compiler will automatically read imported files from the filesystem, but
it is also possible to provide path redirects using ``prefix=path`` in the following way:
@@ -96,10 +98,13 @@ Input Description
{
// Optional: Sorted list of remappings
remappings: [ ":g/dir" ],
- // Optional: Optimizer settings (enabled defaults to false)
+ // Optional: Optimizer settings
optimizer: {
+ // disabled by default
enabled: true,
- runs: 500
+ // Optimize for how many times you intend to run the code.
+ // Lower values will optimize more for initial deployment cost, higher values will optimize more for high-frequency usage.
+ runs: 200
},
evmVersion: "byzantium", // Version of the EVM to compile for. Affects type checking and code generation. Can be homestead, tangerineWhistle, spuriousDragon, byzantium or constantinople
// Metadata settings (optional)