diff options
author | Denton Liu <liu.denton+github@gmail.com> | 2016-05-18 23:18:39 +0800 |
---|---|---|
committer | Denton Liu <liu.denton+github@gmail.com> | 2016-05-19 05:17:05 +0800 |
commit | d29b9b986efef88a57732b0dccca550d14efada7 (patch) | |
tree | e477004a4ed08707b661bc2784fcbc23740320f7 /docs/miscellaneous.rst | |
parent | c851cd0481b557ef0a18c0bfa13cbe2ab0abf716 (diff) | |
download | dexon-solidity-d29b9b986efef88a57732b0dccca550d14efada7.tar.gz dexon-solidity-d29b9b986efef88a57732b0dccca550d14efada7.tar.zst dexon-solidity-d29b9b986efef88a57732b0dccca550d14efada7.zip |
Changed link from markdown to rst
Added labels for the links to point to
Diffstat (limited to 'docs/miscellaneous.rst')
-rw-r--r-- | docs/miscellaneous.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/miscellaneous.rst b/docs/miscellaneous.rst index e1c9f4aa..4a7b8438 100644 --- a/docs/miscellaneous.rst +++ b/docs/miscellaneous.rst @@ -97,6 +97,8 @@ even though the instructions contained a jump in the beginning. .. index:: ! commandline compiler, compiler;commandline, ! solc, ! linker +.. _commandline-compiler: + ****************************** Using the Commandline Compiler ****************************** @@ -119,7 +121,7 @@ files reside, so things like `import "/etc/passwd";` only work if you add `=/` a If there are multiple matches due to remappings, the one with the longest common prefix is selected. -If your contracts use [libraries](#libraries), you will notice that the bytecode contains substrings of the form `__LibraryName______`. You can use `solc` as a linker meaning that it will insert the library addresses for you at those points: +If your contracts use :ref:`libraries <libraries>`, you will notice that the bytecode contains substrings of the form `__LibraryName______`. You can use `solc` as a linker meaning that it will insert the library addresses for you at those points: Either add `--libraries "Math:0x12345678901234567890 Heap:0xabcdef0123456"` to your command to provide an address for each library or store the string in a file (one library per line) and run `solc` using `--libraries fileName`. |