SublimeLinter-contrib-iverilog
This linter plugin for SublimeLinter provides an interface to iverilog (verilog compiler).
Details
Installs
- Total 12K
- Win 9K
- Mac 1K
- Linux 2K
Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | Nov 6 | Nov 5 | Nov 4 | Nov 3 | Nov 2 | Nov 1 | Oct 31 | Oct 30 | Oct 29 | Oct 28 | Oct 27 | Oct 26 | Oct 25 | Oct 24 | Oct 23 | Oct 22 | Oct 21 | Oct 20 | Oct 19 | Oct 18 | Oct 17 | Oct 16 | Oct 15 | Oct 14 | Oct 13 | Oct 12 | Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 2 | 3 | 4 | 1 | 3 | 10 | 5 | 0 | 0 | 3 | 2 | 0 | 1 | 5 | 7 | 7 | 7 | 15 | 2 | 2 | 4 | 3 | 8 | 6 | 6 | 3 | 2 | 3 | 6 | 3 | 3 | 8 | 0 | 5 | 8 | 8 | 10 | 10 | 5 | 2 | 3 | 6 | 2 | 7 | 7 | 10 |
Mac | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 2 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 0 | 1 | 0 | 0 | 1 | 1 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 3 | 0 | 2 | 0 | 0 | 0 | 0 | 0 | 0 | 5 | 2 | 0 | 0 | 0 | 1 | 0 | 1 |
Readme
- Source
- raw.githubusercontent.com
SublimeLinter-contrib-iverilog
This linter plugin for SublimeLinter
provides an interface to iverilog into Sublime Text.
To make this plugin work, you need to have iverilog
installed.
This plugin will be activated with files that have the Verilog
syntax.
By the way, you may also try
These packages above should beat this one. 🙂
Installation
SublimeLinter must be installed in order to use this plugin. If SublimeLinter is not installed, please follow the instructions here.
Verilog/SystemVerilog syntax highlight is not natively supplied by Sublime Text. You may install Sublime Text Verilog or Sublime Text SystemVerilog to do the job.
Linter installation
- iverilog >= 0.9
Before installing this plugin, you must ensure that iverilog
is installed on your system.
To install iverilog
, please see this.
Plugin installation
Please use Package Control to install the linter plugin. This will ensure that the plugin will be updated when new versions are available. If you want to install from source so you can modify the source code, you probably know what you are doing so we won't cover that here.
To install via Package Control, do the following:
Within Sublime Text, bring up the
Command Palette
by Ctrl + Shift + P and typeinstall
. Among the commands you should seePackage Control: Install Package
. If that command is not highlighted, use the keyboard or mouse to select it. There will be a pause of a few seconds while Package Control fetches the list of available plugins.When the plugin list appears, type
iverilog
. Among the entries you should seeSublimeLinter-contrib-iverilog
. If that entry is not highlighted, use the keyboard or mouse to select it.
Settings
For general information on how SublimeLinter works with settings, please see Settings. For information on generic linter settings, please see Linter Settings.
Demo
Solving Unknown module type: XXX
There is actually -i
flag
with the master
branch of iverilog
to ignore this kind of error messages.
To test whether your iverilog
supports it,
use the $ iverilog -i
command to see whether it says iverilog: invalid option -- 'i'
.
If your iverilog
has no -i
flag and you wish to use it, continue the following steps.
- If you are on Windows,
- Just download and install the latest Windows v11 x64 dev build.
- If you are on Ubuntu,
Download and execute the ubuntu-compile-iverilog-mater.sh from this package.
curl -sSL "https://raw.githubusercontent.com/jfcherng-sublime/SublimeLinter-contrib-iverilog/master/ubuntu-compile-iverilog-mater.sh" | bash
If there is no error, the
master
branchiverilog
should have been installed to/usr/local/iverilog
.
- If you use neither Windows nor Ubuntu,
- It should be easy to modify
ubuntu-compile-iverilog-mater.sh
to fit your OS.
After iverilog
has been installed,
- Update SublimeLinter's PATH in SublimeLinter's settings file.
"paths": {
"linux": [
"/usr/local/iverilog/bin",
],
"osx": [],
"windows": [
"C:\\iverilog\\bin",
],
},
- Pass the
-i
flag to the linter by modifying SublimeLinter's settings file.
"linters": {
"iverilog": {
"disable": false,
"args": ["-i"], // add the "-i" flag
"excludes": [],
},
},
- The
Unknown module type: XXX
problem should have been solved (ignored).
Contributing
If you would like to contribute enhancements or fixes, please do the following:
- Fork the plugin repository.
- Hack on a separate topic branch created from the latest
master
. - Commit and push the topic branch.
- Make a pull request.
- Be patient.
Please note that modifications should follow these coding guidelines:
- Indent is 4 spaces.
- Code should pass flake8 and pep257 linters.
- Probably format codes with black code formatter.
- Vertical whitespace helps readability, don’t be afraid to use it.
- Please use descriptive variable names, no abbreviations unless they are very well known.
Thank you for helping out!