Command Line Options » History » Version 5
Sergey Smolov, 11/06/2019 10:36 AM
1 | 1 | Sergey Smolov | h1. Command Line Options |
---|---|---|---|
2 | |||
3 | Verilog Translator provides the following command line options: |
||
4 | 5 | Sergey Smolov | |*Long name*|*Short name*|*Description*|*Default value*| |
5 | 4 | Sergey Smolov | |--include-path|-I|Include directory path|-| |
6 | 1 | Sergey Smolov | |
7 | 3 | Sergey Smolov | Detailed notes about described options are written below. |
8 | 1 | Sergey Smolov | |
9 | h2. Include directory path |
||
10 | |||
11 | 2 | Sergey Smolov | The option is used to provide to the tool the path to directory where Verilog modules that the target one uses are located. Multiple paths are always allowed - in such case the should be separated by system separator (":" for Unix, ";" for Windows). |
12 | 1 | Sergey Smolov | |
13 | When _a.v_ module uses module that is described at _b.v_ file, following situations are available: |
||
14 | # The _a.v_ file does not contain "`include" macro - no '--include-dir' option should be used, both modules should be given to Verilog Translator and _b.v_ should be the first one; |
||
15 | # The _a.v_ file contains "`include "b.v"" macro - set full path to directory with _b.v_ to '--include-dir' option |
||
16 | # The _a.v_ file contains "`include "/relative/path/to/b.v"" macro - set prefix to path to directory with _b.v_ to '--include-dir' option |