Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix name of Lattice Diamond settings variable | Patrick Lehmann | 2022-03-22 | 1 | -1/+1 |
|\ | |||||
| * | Fix name of Lattice Diamond settings variable | Joonas Javanainen | 2022-03-22 | 1 | -1/+1 |
|/ | | | | | | The Lattice Diamond variable in config.sh is called `Lattice_Diamond_Settings`. `LatticeDiamond` was an incorrect prefix which never matched the settings, so they were never used. | ||||
* | synth-vhdl_expr: minor refactoring - add comments | Tristan Gingold | 2022-03-20 | 1 | -16/+34 |
| | |||||
* | testsuite/synth: add a test for #2013 | Tristan Gingold | 2022-03-20 | 9 | -0/+238 |
| | |||||
* | synth-vhdl_expr(value2logvec): fix vlen handling. Fix #2013 | Tristan Gingold | 2022-03-20 | 1 | -7/+13 |
| | |||||
* | testsuite/synth: add a test for #2011 | Tristan Gingold | 2022-03-18 | 3 | -0/+59 |
| | |||||
* | synth-vhdl_context: adjust mask. Fix #2011 | Tristan Gingold | 2022-03-18 | 1 | -1/+1 |
| | |||||
* | Merge pull request #2009 from Xiretza/install-local-fixes | tgingold | 2022-03-17 | 1 | -5/+6 |
|\ | | | | | Makefile: install.local fixes | ||||
| * | Makefile: fix order of test target dependencies | Xiretza | 2022-03-17 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | The install.*.local targets need to be run before the backend-specific test target, but this is not guaranteed by making them all dependencies of the global test target. Making the install targets dependencies of the backend-specific test target instead guarantees they are executed before the testsuite is run. | ||||
| * | Makefile: install.local: create required directories | Xiretza | 2022-03-17 | 1 | -1/+2 |
| | | |||||
| * | Makefile: install.libghdl.local: don't install to DESTDIR | Xiretza | 2022-03-17 | 1 | -2/+2 |
|/ | | | | | The purpose of the .local install targets is to install the files in-tree to allow running the test suite before installing ghdl proper. | ||||
* | vhdl-19: analyze return identifier | Tristan Gingold | 2022-03-16 | 1 | -0/+18 |
| | |||||
* | Fix include-dir paths returned by cmdline _again_ | Daniel Gröber | 2022-03-14 | 5 | -5/+41 |
| | | | | | | --libghdl-include-dir should point at a directory containing a ghdl/ subdirectory while --vpi-include-dir should point right at the ghdl/ subdir. | ||||
* | testsuite/gna: add a test for #2006 | Tristan Gingold | 2022-03-13 | 3 | -0/+24 |
| | |||||
* | vhdl: check access type restrictions also on completion. Fix #2006 | Tristan Gingold | 2022-03-13 | 3 | -25/+32 |
| | |||||
* | Parallelize suite_driver with xargs -P | Daniel Gröber | 2022-03-13 | 1 | -33/+65 |
| | | | | | The vests suite is still sequential since it doesn't seem to go through suite_driver which is still limiting the speedup. | ||||
* | Fix hardcoded values in gcc backend's default_paths | Daniel Gröber | 2022-03-13 | 4 | -24/+30 |
| | | | | | | | | | | The gcc backend's Make-lang.in still had hardcoded install paths. Since this is copied to the gcc build system we don't have access to our configure variables, so just treat it as a subst_file in the configure script. While we're at it we get rid of the separate sed invocation for default_paths and have that go through config.status instead. | ||||
* | mk: Add test target dependency on install.vpi.local | Daniel Gröber | 2022-03-13 | 1 | -0/+1 |
| | | | | This fixes some test errors when running `make test` right after a build. | ||||
* | testsuite/synth: add test for #2002 | Tristan Gingold | 2022-03-12 | 3 | -0/+28 |
| | |||||
* | netlists-disp_verilog: fix disp_const_bit | Tristan Gingold | 2022-03-12 | 1 | -2/+2 |
| | |||||
* | configure: explain in help the installation directories | Tristan Gingold | 2022-03-11 | 1 | -1/+6 |
| | |||||
* | testsuite/gna: add a test for #1999 | Tristan Gingold | 2022-03-11 | 4 | -0/+82 |
| | |||||
* | vhdl: check association restrictions for operators. Fix #1999 | Tristan Gingold | 2022-03-11 | 3 | -170/+181 |
| | |||||
* | synth: check matching bounds for concatenation | Tristan Gingold | 2022-03-11 | 2 | -2/+4 |
| | |||||
* | mk: Remove unused $libdirreverse | Daniel Gröber | 2022-03-11 | 2 | -3/+1 |
| | |||||
* | mk: Introduce configure options for inc/libdirsuffix | Daniel Gröber | 2022-03-11 | 9 | -62/+86 |
| | | | | | | | | This patch is based on one from the Debian ghdl packaging. We use it to support coinstallability of the different ghdl backend executables. Force prepending ghdl/ to the include path really doesn't help us with that any. Note this effectively reverts 786ca17ce. | ||||
* | Fix --libghdl-include-dir ghdl/ suffix | Daniel Gröber | 2022-03-11 | 1 | -1/+3 |
| | | | | | | Commit 66cd5e0aa ("Include directory structure proposal.") added a ghdl/ subdir to the include directory. This wasn't properly reflected in ghdlsynth. | ||||
* | synth: add debug_bt | Tristan Gingold | 2022-03-08 | 4 | -0/+56 |
| | |||||
* | testsuite/synth: add a test for #1993 | Tristan Gingold | 2022-03-08 | 3 | -0/+115 |
| | |||||
* | synth: handle concatenation of unbounded types. Fix #1993 | Tristan Gingold | 2022-03-08 | 9 | -111/+64 |
| | |||||
* | testsuite/gna: add a test for #1994 | Tristan Gingold | 2022-03-05 | 2 | -0/+26 |
| | |||||
* | grt-signals.adb: Suppress overflow check before manual check. Fix #1994 | Tristan Gingold | 2022-03-05 | 1 | -6/+11 |
| | |||||
* | testsuite/gna: add a testcase for #1992 | Tristan Gingold | 2022-03-04 | 2 | -0/+51 |
| | |||||
* | vhdl-sem_names: fix a crash with select of element attribute. Fix #1992 | Tristan Gingold | 2022-03-04 | 1 | -1/+2 |
| | |||||
* | vhdl: parse return identifier (v19) | Tristan Gingold | 2022-03-04 | 7 | -438/+532 |
| | |||||
* | testsuite/synth: add a test for #1991 | Tristan Gingold | 2022-03-02 | 2 | -0/+35 |
| | |||||
* | synth-vhdl_oper: implement <= for arrays. Fix #1991 | Tristan Gingold | 2022-03-02 | 2 | -7/+19 |
| | |||||
* | testsuite/synth: add a testcase for #1986 | Tristan Gingold | 2022-03-02 | 2 | -0/+50 |
| | |||||
* | elab-vhdl_expr.adb(exec_name_subtype): handle indexed names. Fix #1986 | Tristan Gingold | 2022-03-02 | 1 | -0/+8 |
| | |||||
* | vhdl-sem_decls: allow out/inout parameters to impure function in VHDL-2019 | Xiretza | 2022-03-01 | 1 | -3/+15 |
| | | | | | This implements LCS-2016-002: http://www.eda-twiki.org/cgi-bin/view.cgi/P1076/LCS2016_002 | ||||
* | Fixed a few typos. | Patrick Lehmann | 2022-03-01 | 3 | -8/+8 |
|\ | |||||
| * | fix few more typos | Julin S | 2022-03-01 | 2 | -7/+7 |
| | | |||||
| * | Fix typo | Julin S | 2022-03-01 | 1 | -1/+1 |
|/ | | | Fix typo | ||||
* | scripts/msys2-mcode/GetStandaloneDeps: fix libghdl version | umarcor | 2022-03-01 | 1 | -1/+1 |
| | |||||
* | Fix some docs issues introduced by #1981 (#1987) | Unai Martinez-Corral | 2022-03-01 | 2 | -3/+3 |
|\ | |||||
| * | docs: fix headline markers | Xiretza | 2022-03-01 | 1 | -2/+2 |
| | | |||||
| * | docs: fix paragraph about existing VHDL editions | Xiretza | 2022-03-01 | 1 | -1/+1 |
|/ | |||||
* | vhdl-sem_types: allow methods to return file and protected types in -2019 | Xiretza | 2022-03-01 | 1 | -1/+3 |
| | | | | | | This implements LCS2016_004: http://www.eda-twiki.org/cgi-bin/view.cgi/P1076/LCS2016_004 | ||||
* | vhdl-sem_types: allow file and protected type access types in -2019 | Xiretza | 2022-03-01 | 1 | -7/+12 |
| | | | | | This implements LCS-2016-014a: http://www.eda-twiki.org/cgi-bin/view.cgi/P1076/LCS2016_014a | ||||
* | Update documentation for VHDL-2019 | Xiretza | 2022-02-28 | 3 | -7/+15 |
| |