aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix parallel buildsVicente Bergas2016-11-041-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit fixes this error: /#################################### $ ./configure Build machine is: x86_64-pc-linux-gnu Creating ghdl.gpr Creating Makefile Generate ortho_code-x86-flags.ads Generate elf_arch.ads Generate default_pathes.ads $ $ $ make -j4 gcc -c -g -DWITH_GNAT_RUN_TIME -o jumps.o src/grt/config/jumps.c gcc -c -g -DWITH_GNAT_RUN_TIME -o times.o src/grt/config/times.c gcc -c -g -DWITH_GNAT_RUN_TIME -o grt-cbinding.o src/grt/grt-cbinding.c gcc -c -g -DWITH_GNAT_RUN_TIME -o grt-cvpi.o src/grt/grt-cvpi.c gcc -c -g -DWITH_GNAT_RUN_TIME -o fstapi.o -I./src/grt/fst src/grt/fst/fstapi.c gcc -c -g -DWITH_GNAT_RUN_TIME -o lz4.o src/grt/fst/lz4.c gcc -c -g -DWITH_GNAT_RUN_TIME -o fastlz.o src/grt/fst/fastlz.c gcc -c -g -o memsegs_c.o src/ortho/mcode/memsegs_c.c gcc -c -g -DWITH_GNAT_RUN_TIME -o chkstk.o src/grt/config/chkstk.S if [ -d ./.git ]; then \ desc=`cd .; git describe --dirty`; \ sed -e "s/[(].*[)]/($desc)/" < src/version.in > version.tmp; \ else \ cp src/version.in version.tmp; \ fi make: *** No rule to make target '/tmp/ghdl/ghdl_mcode', needed by 'std.v87'. Stop. make: *** Waiting for unfinished jobs.... /#################################### It is failing because the dependency includes the full path while the target does not. Signed-off-by: Vicente Bergas <vicencb@gmail.com>
* Remove auto-generated files with `make clean'Vicente Bergas2016-11-041-1/+1
| | | | Signed-off-by: Vicente Bergas <vicencb@gmail.com>
* Merge pull request #184 from Jonsba/jonsba/signals_selectiontgingold2016-11-0213-151/+276
|\ | | | | Support added for * and **. Current version set to 1.1
| * Support added for * and **. Please note that wildcards inside names like ↵Jonas Baggett2016-11-0213-151/+276
| | | | | | | | | | | | /top/sub*/... are not supported yet, only synthax like /top/*/... works for now. Support for wildcards inside names will be added on version 1.2, at the same time as simple regexp support. Current version set to 1.1
* | Merge pull request #182 from Paebbels/paebbels/vendor-script-fixestgingold2016-11-028-66/+124
|\ \ | | | | | | Added verbosity control for vendor compile scripts.
| * | Added verbosity control for vendor compile scripts.Patrick Lehmann2016-11-028-66/+124
| |/
* / name_table: auto-initialize.Tristan Gingold2016-11-014-14/+22
|/
* There is a new --write-opt-file option that will create a wave option file ↵Jonas Baggett2016-11-0114-273/+441
| | | | | | | with all the signals of the design. (#179) The --wave-opt-file option is renamed to --read-opt-file for consistency Some code cleanup and bug fixes
* Add testcase for #176Tristan Gingold2016-11-013-0/+41
|
* ghdlxml: display image of string_literal8Tristan Gingold2016-11-014-4/+32
| | | | Fix #176
* Makefiles: use gnatmake instead of gcc to compile single Ada files.Tristan Gingold2016-11-012-14/+9
|
* Also create version.ads for ghdl1-gcc development target.Tristan Gingold2016-11-011-1/+1
|
* Use Ada05 for gcc builds.Tristan Gingold2016-11-011-1/+1
|
* vhdl08: allow unaffected in sequential signal assignments.Tristan Gingold2016-11-0110-30/+106
|
* canon: use vhdl08 for concurrent selected signal assignment.Tristan Gingold2016-11-011-28/+56
|
* Fix a crash for a simple 'unaffected'.Tristan Gingold2016-11-011-1/+4
|
* Add translation for selected signal assignment.Tristan Gingold2016-11-018-139/+355
|
* translation of case: rewrite as generic code (preliminary work).Tristan Gingold2016-11-012-96/+87
|
* Merge pull request #178 from Paebbels/paebbels/compile-xilinx-corelibtgingold2016-10-3017-102/+168
|\ | | | | VendorLib: Added switch to compile XilinxCoreLib for ISE.
| * VendorLib: Added switch to compile XilinxCoreLib for ISE. Adjusted behavior ↵Patrick Lehmann2016-10-2817-102/+168
| | | | | | | | between PowerShell and Bash scripts. Updated embedded help pages.
* | Merge pull request #175 from Paebbels/paebbels/winbuild-versioning-fixtgingold2016-10-305-87/+95
|\ \ | |/ |/| Winbuild: Fixed Windows build flow after makefile changes.
| * Fixed windows build flow.Patrick Lehmann2016-10-235-87/+95
|/
* Create version.ads from git hash/date in version.adsTristan Gingold2016-10-202-10/+25
| | | | Fix #161
* Add a dash in version.Tristan Gingold2016-10-201-2/+2
| | | | Fix #173
* Remove default_*_map_aspect from binding_indication.Tristan Gingold2016-10-209-361/+271
|
* Merge pull request #171 from Paebbels/paebbels/winbuild-alter-pathtgingold2016-10-191-40/+123
|\ | | | | winbuild: Fixed add and remove from PATH.
| * winbuild: Fixed add and remove from PATH.Patrick Lehmann2016-10-191-40/+123
| |
* | canon: do not set formal of association by position.Tristan Gingold2016-10-1916-345/+450
|/
* Merge pull request #170 from Paebbels/paebbels/winbuild-update-uninstalltgingold2016-10-181-23/+88
|\ | | | | Added support for install into default directory, install into same directory, update and uninstall.
| * Added support for install into default directory, install into same ↵Patrick Lehmann2016-10-181-23/+88
| | | | | | | | directory, update and uninstall.
* | Merge pull request #169 from Paebbels/paebbels/fixed-verbosity-problemtgingold2016-10-184-49/+111
|\ \ | | | | | | Fixed verbosity problem in the Windows build flow.
| * | Fixed verbosity problem in the Windows build flow.Patrick Lehmann2016-10-184-49/+111
| |/
* | ownership: fix arrays and physical types from parse.Tristan Gingold2016-10-1811-304/+290
| |
* | iirs: add an assert on Get_Kind.Tristan Gingold2016-10-183-13/+15
| |
* | Add testcase for --file-to-xmlTristan Gingold2016-10-172-0/+29
| |
* | Add testcase for #167Tristan Gingold2016-10-173-0/+42
| |
* | get_object_type_staticness: handle component_declaration.Tristan Gingold2016-10-171-0/+1
| | | | | | | | Fix #167
* | nodes_gc: move checks in libraries (WIP)Tristan Gingold2016-10-175-27/+71
| |
* | Disable most of canon for reprint.Tristan Gingold2016-10-173-31/+59
| |
* | ghdlxml: add version.Tristan Gingold2016-10-151-9/+16
| |
* | simulation: remove sim_be after previous code factorization.Tristan Gingold2016-10-156-205/+67
| |
* | Finish_Compilation: factorize code, move to libraries.Tristan Gingold2016-10-1515-381/+322
| |
* | nodes: remove discriminant on node_record.Tristan Gingold2016-10-152-77/+66
| |
* | nodes: remove Int and Fp formats, use multiple fields.Tristan Gingold2016-10-156-107/+73
| |
* | nodes: handle 'grp' conversion, replace Odigit1 by flags.Tristan Gingold2016-10-156-121/+219
|/
* Merge pull request #165 from Paebbels/fixed-module-unloadtgingold2016-10-154-34/+23
|\ | | | | Windows Build Flow: Fixed error of premature module unload.
| * Windows Build Flow: Fixed error of premature module unload.Patrick Lehmann2016-10-144-34/+23
| |
* | Add --file-to-xml to dump tree as XML.Tristan Gingold2016-10-149-8/+587
|/
* iirs: rename base_type to number_base_type to avoid confusion.Tristan Gingold2016-10-139-45/+46
|
* nodes_gc: a leak is an error.Tristan Gingold2016-10-131-1/+1
|