Menu

Tree [f21890] master /
 History

HTTPS access


File Date Author Commit
 dist 2016-06-24 Patrick Lehmann Patrick Lehmann [debc77] Reworked standard libraries compile flow (std, ...
 doc 2016-06-28 Jonsba Jonsba [2ea6a5] Jonsba/master (#100)
 libraries 2016-06-24 Patrick Lehmann Patrick Lehmann [debc77] Reworked standard libraries compile flow (std, ...
 src 2016-07-06 Tristan Gingold Tristan Gingold [f21890] Adjust xrefs for case-generate and context decl...
 testsuite 2016-07-05 Tristan Gingold Tristan Gingold [e30521] vhdl08: add support of case-generate statement
 .gdbinit 2015-12-03 Tristan Gingold Tristan Gingold [539674] Add .gdbinit
 .gitignore 2016-06-24 Patrick Lehmann Patrick Lehmann [debc77] Reworked standard libraries compile flow (std, ...
 .hgignore 2015-01-20 Patrick Lehmann Patrick Lehmann [57e9ab] Experimental: Translated compile scripts for wi...
 .travis.yml 2016-05-03 Tristan Gingold Tristan Gingold [79eb79] travis: enable glob_file.
 BUILD.txt 2016-07-02 Tristan Gingold Tristan Gingold [33ea6a] BUILD.txt: add more --disable options to the gc...
 COPYING 2005-09-24 gingold gingold [977ff5] First import from sources
 Makefile.in 2016-06-30 Patrick Lehmann Patrick Lehmann [030a49] A first changeset for MinGW32 and MinGW64 to co...
 NEWS 2016-03-19 Tristan Gingold Tristan Gingold [77d23c] Add news entries.
 README.md 2016-02-03 kraigher kraigher [2a9838] Updated VUnit URL to new website.
 STYLE 2014-12-05 Tristan Gingold Tristan Gingold [4a615a] STYLE: clarify parameters rule.
 configure 2016-06-30 Patrick Lehmann Patrick Lehmann [030a49] A first changeset for MinGW32 and MinGW64 to co...
 ghdl.gpr.in 2015-12-14 Tristan Gingold Tristan Gingold [96d844] update project file.

Read Me

GHDL

This directory contains the sources of GHDL, the VHDL simulator.

GHDL is not an interpreter: it generates machine code from your design,
the only way for high speed simulation.

GHDL fully supports IEEE 1076-1987, IEEE 1076-1993, IEE 1076-2002 and
partially the 1076-2008 version of VHDL.

Main features are:
- available on Linux (x86 and x86-64), Windows and Mac OS x
- handle very large designs like leon3/grlib.
- can write waveforms to a vcd or fst file.
- partial support of PSL
- support vunit (https://vunit.github.io)
- support OSVVM (http://osvvm.org)
- support cocotb (https://github.com/potentialventures/cocotb) through the VPI interface

GHDL is free software. See the file COPYING for copying permission.
The manuals, and some of the runtime libraries, are under different
terms; see the individual source files for details.

Doc is available on http://ghdl.readthedocs.org/en/latest/index.html

Building GHDL (Short instructions)

If you aren't on linux, see below for full instructions.

You need GNAT GPL 2014 (or later) for x86 (32 or 64 bits). GNAT is the GNU Ada
compiler and GNAT GPL is very easy to install (download anonymously from
libre.adacore.com, untar and run the doinstall script). You also need
zlib (for Debian or Ubuntu: install zlib1g-dev package).

In the GHDL source directory, configure and build:

$ ./configure --prefix=/usr/local
$ make

At that place, you can already use the 'ghdl_mcode' built in the directory.
You can also install GHDL (the executable is installed as 'ghdl'):

$ make install

That's all!

Build GHDL (Long instructions)

See BUILD.txt