diff options
author | chriseth <chris@ethereum.org> | 2017-04-24 23:12:37 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-24 23:12:37 +0800 |
commit | d3b8d5f0498724fc4271f907f0404b4ed7922399 (patch) | |
tree | 31250578aa02cc6d0a3c1286e5b487be0cb24085 /docs | |
parent | 2c3fea55df4e7eff6df515c19f5f80737e829bcf (diff) | |
parent | 43eb8398711f7fafd703cff06092f3dfd2b0e748 (diff) | |
download | dexon-solidity-d3b8d5f0498724fc4271f907f0404b4ed7922399.tar dexon-solidity-d3b8d5f0498724fc4271f907f0404b4ed7922399.tar.gz dexon-solidity-d3b8d5f0498724fc4271f907f0404b4ed7922399.tar.bz2 dexon-solidity-d3b8d5f0498724fc4271f907f0404b4ed7922399.tar.lz dexon-solidity-d3b8d5f0498724fc4271f907f0404b4ed7922399.tar.xz dexon-solidity-d3b8d5f0498724fc4271f907f0404b4ed7922399.tar.zst dexon-solidity-d3b8d5f0498724fc4271f907f0404b4ed7922399.zip |
Merge pull request #2161 from ethereum/jsonio-cleanup
Small cleanups to JSON IO
Diffstat (limited to 'docs')
-rw-r--r-- | docs/using-the-compiler.rst | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/docs/using-the-compiler.rst b/docs/using-the-compiler.rst index 9e9a5eb6..deaa1329 100644 --- a/docs/using-the-compiler.rst +++ b/docs/using-the-compiler.rst @@ -37,15 +37,13 @@ Either add ``--libraries "Math:0x12345678901234567890 Heap:0xabcdef0123456"`` to If ``solc`` is called with the option ``--link``, all input files are interpreted to be unlinked binaries (hex-encoded) in the ``__LibraryName____``-format given above and are linked in-place (if the input is read from stdin, it is written to stdout). All options except ``--libraries`` are ignored (including ``-o``) in this case. +If ``solc`` is called with the option ``--standard-json``, it will expect a JSON input (as explained below) on the standard input, and return a JSON output on the standard output. + .. _compiler-api: Compiler Input and Output JSON Description ****************************************** -.. warning:: - - This JSON interface is not yet supported by the Solidity compiler, but will be released in a future version. - These JSON formats are used by the compiler API as well as are available through ``solc``. These are subject to change, some fields are optional (as noted), but it is aimed at to only make backwards compatible changes. |