aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
Commit message (Collapse)AuthorAgeFilesLines
* Makefile.in: honor GHDL_* envvars for overriding versionumarcor2021-10-091-5/+5
|
* version.in: reformatting, simplify the Makefile ruleTristan Gingold2021-10-061-12/+10
|
* Makefile.in: Allow overriding version string even with gitAndreas Bombe2021-10-041-6/+9
| | | | | | | | When creating version.tmp, the Makefile.in has provisions for setting the DESC, REF and HASH variables from environment variables. However these would be overwritten if it detects it is building from a git checkout. This commit changes it to always override the default or autodetected values when the environment variables are available,
* Makefile.in: Use $(CURDIR) instead of $(shell pwd)Andreas Bombe2021-10-041-1/+1
| | | | | | | | GNU make will set the variable CURDIR to the current directory, there is no need to call out to the shell. Also use simple assignment instead of conditional on not previously set. Otherwise it could get its value from an envirnoment variable "PWD", which shells may or may not have set, or which may not be up to date at the time of the call.
* Makefile.in: Fix missed files in distcleanAndreas Bombe2021-10-041-0/+1
| | | | | The files elf_arch.ads and ghdlsynth_maybe.ads are created by the configure script and also need to be removed in distclean.
* configure and Makefile: link ghdl with grt-cstdioTristan Gingold2021-09-171-4/+8
|
* Makefile.in: add support for gcc 11. Part of #1817Tristan Gingold2021-07-191-7/+6
|
* Makefile.in: fix wrong path for libghw targetXiretza2021-05-101-3/+3
|
* ortho: fix CFLAGS/CXXFLAGS distinctionXiretza2021-05-101-1/+1
|
* configure, Makefile.in: use CXXFLAGS from environmentXiretza2021-05-101-1/+3
|
* Makefile.in: strip -static from LDFLAGS for libghdlXiretza2021-05-101-1/+1
| | | | | MinGW builds set LDFLAGS=-static, but libghdl is already built -shared, which causes the build to fail.
* Makefile.in: use LDFLAGSXiretza2021-05-101-6/+6
|
* Makefiles: remove unused GNAT_LARGS variableXiretza2021-05-101-5/+5
|
* Makefile.in: fold OPT_FLAGS and WARN_FLAGS into CFLAGSXiretza2021-05-101-8/+10
|
* Makefile.in: use CFLAGS from configureXiretza2021-05-101-6/+7
|
* Makefile.in: pass Ada warning options to GRTXiretza2021-05-101-7/+9
|
* Makefile.in: disable assertions for GRTXiretza2021-05-101-1/+1
| | | | | | | | | | Enabling asserts results in errors of the following kind when trying to elaborate a design: /usr/local/lib/ghdl/libgrt.a(grt-rtis.o): In function `__ghdl_rti_add_package': grt-rtis.adb:(.text+0x475): undefined reference to `system__assertions__raise_assert_failure' system__assertions__raise_assert_failure is provided by libgnat.so.
* Makefile.in: pass ADA_FLAGS to GRTXiretza2021-05-101-0/+1
|
* configure: use ADA_FLAGS from environmentXiretza2021-05-101-0/+1
|
* Makefile.in: lift coverage flags from OPT_FLAGSXiretza2021-05-101-12/+10
|
* Makefile.in: remove circular reference for ghwdump on LinuxTristan Gingold2021-04-271-2/+0
|
* testsuite: try to determine ghwdump location automaticallyXiretza2021-04-271-1/+1
|
* ghw: rename 'ghwlib' to 'libghw' (#1741)umarcor2021-04-241-10/+10
|
* Makefile: build and install ghwlib shared libraryumarcor2021-04-231-2/+9
|
* move ghwlib and ghwdump sources to subdir 'ghw'umarcor2021-04-231-2/+2
|
* Makefile: add and use all.ghw, install.ghw and uninstall.ghw targetsumarcor2021-04-231-5/+15
|
* Makefile: move vhdlib, vpi and libghdl (un)install depsumarcor2021-04-231-10/+10
|
* Makefile.in: make ghdl/ include subdir explicitTristan Gingold2021-03-071-7/+8
|
* Makefile.in: adjust install.vpi.local Fox #1674Tristan Gingold2021-03-071-3/+3
|
* Include directory structure proposal.Michał Kruszewski2021-03-071-5/+5
|
* VHPI: add initial minimal implementationMarlon James2021-03-041-4/+11
| | | | | | | | Minimal implementation of VHPI provides library loading and error support. Calling most vhpi_* functions will raise a VHPI error condition. Incorporates VHPI thunks into libghdlvpi for linking.
* Makefile: put libraries in lib/. For #1642Tristan Gingold2021-02-131-11/+10
|
* vendors: move vendor pre-compile scripts into subdir 'scripts'umarcor2021-01-211-2/+2
|
* libraries: unuse 'openieee', rename enable_openieee to enable_gplcompatumarcor2021-01-161-19/+24
|
* update license headersumarcor2021-01-141-11/+9
|
* mv dist/* scripts/umarcor2021-01-061-5/+5
|
* version: add Ref and Hashumarcor2021-01-051-3/+15
|
* scripts: move 'pyGHDL/xtools' to 'scripts', update Makefiles and docs ↵umarcor2020-12-281-1/+1
| | | | accordingly
* makefile: fix 'test' when buildir != srcdireine2020-07-241-3/+3
|
* Makefile.in: force -gnat12, pass CFLAGS to llvm Makefile.Tristan Gingold2020-06-191-3/+4
|
* Makefile.in: always add src/synth to the include path.Tristan Gingold2020-06-041-1/+1
|
* Makefile.in: use gnatlink -g for libghdl.Tristan Gingold2020-05-241-1/+3
|
* Makefile.in: also build and install libghdl.a. For #1336Tristan Gingold2020-05-231-1/+10
|
* Disable gnatwc warnings for gnatgpl2020Tristan Gingold2020-05-231-1/+1
|
* rework 'version.tmp' (#1320)umarcor2020-05-201-8/+4
| | | | | | | | | * msys2: work around makepkg hanging at the end of build() * ci: update actions/checkout to v2 * make: allow setting default description through GHDL_DESC * ci: ensure clean git describe on MSYS2
* Makefile.in: also copy grt-severity.ads for gcc.Tristan Gingold2020-05-141-0/+1
|
* Makefile.in: minor cleanup.Tristan Gingold2020-04-251-3/+0
|
* Makefile: add test target. Fix #1255Tristan Gingold2020-04-241-0/+11
|
* Automatically add -Wl,-u,ghdl_main when -shared is used. For #640Tristan Gingold2020-04-151-1/+8
|
* Makefile.in: link ghdl_mcode with GRT_EXEC_OPTS. Fix #1222Tristan Gingold2020-04-131-1/+1
|