Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gtkwave/gtkwave
GTKWave is a fully featured GTK+ based wave viewer for Unix and Win32 which reads LXT, LXT2, VZT, FST, and GHW files as well as standard Verilog VCD/EVCD files and allows their viewing.
https://github.com/gtkwave/gtkwave
fst ghw vcd viewer waveform
Last synced: 3 months ago
JSON representation
GTKWave is a fully featured GTK+ based wave viewer for Unix and Win32 which reads LXT, LXT2, VZT, FST, and GHW files as well as standard Verilog VCD/EVCD files and allows their viewing.
- Host: GitHub
- URL: https://github.com/gtkwave/gtkwave
- Owner: gtkwave
- License: gpl-2.0
- Created: 2019-11-16T00:12:08.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-09-07T19:43:26.000Z (5 months ago)
- Last Synced: 2024-09-07T20:47:07.308Z (5 months ago)
- Topics: fst, ghw, vcd, viewer, waveform
- Language: C
- Homepage: https://gtkwave.github.io/gtkwave/
- Size: 10.1 MB
- Stars: 610
- Watchers: 19
- Forks: 117
- Open Issues: 141
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: COPYING
- Authors: AUTHORS
Awesome Lists containing this project
- awesome-opensource-hardware - gtkwave
README
# GTKWave
GTKWave is a fully featured GTK+ based wave viewer for Unix and Win32 which reads FST, and GHW files as well as standard Verilog VCD/EVCD files and allows their viewing.
## Building GTKWave from source
### Installing dependencies
Debian, Ubuntu:
```sh
apt install build-essential meson gperf flex desktop-file-utils libgtk-3-dev \
libbz2-dev libjudy-dev libgirepository1.0-dev
```Fedora:
```sh
dnf install meson gperf flex glib2-devel gcc gcc-c++ gtk3-devel \
gobject-introspection-devel desktop-file-utils tcl
```macOS:
```sh
brew install desktop-file-utils shared-mime-info \
gobject-introspection gtk-mac-integration \
meson ninja pkg-config gtk+3
```### Building GTKWave
```sh
git clone "https://github.com/gtkwave/gtkwave.git"
cd gtkwave
meson setup build && cd build && meson install
```### Running GTKWave
```sh
gtkwave [path to a .vcd, .fst, .ghw dump file or a .gtkw savefile]
```
For more information about available command line parameters refer to the built in-help (`gtkwave --help`) or the [`gtkwave` man page](https://gtkwave.github.io/gtkwave/man/gtkwave.1.html).