aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.in
Commit message (Collapse)AuthorAgeFilesLines
* Makefiles: use GNATMAKE for llvm and grt.Tristan Gingold2017-10-191-1/+1
| | | | Tentative fix for #443.
* Also support gcc-6 (instead of only gcc 6.x).Tristan Gingold2017-10-041-4/+4
| | | | For #425
* Replace libmhdlsim by libghdl.Tristan Gingold2017-10-031-9/+4
|
* Makefile: also clean object files in pic/Tristan Gingold2017-10-021-0/+1
|
* travis: add gpl packagingTristan Gingold2017-08-271-3/+14
|
* Add --enable-openieee to configureTristan Gingold2017-08-191-0/+2
|
* Add clean-pure-gpl, allow to build with openieeeTristan Gingold2017-08-191-3/+13
|
* configure: add --disable-checksTristan Gingold2017-07-211-9/+12
|
* Define GHDL_GCC_BIN in Makefile.inTristan Gingold2017-05-301-1/+6
| | | | Fix #127
* Do not create dir for installation during configure.Tristan Gingold2017-05-301-1/+0
| | | | Fix #359
* Don't install libbacktrace when building with gcc.Tristan Gingold2017-05-241-2/+2
|
* Build grt to lib/ subdir.Tristan Gingold2017-05-231-14/+6
| | | | For #352
* Avoid dependencies on dirs, create dirs during configure.Tristan Gingold2017-05-231-1/+8
| | | | For #352
* Install libbacktrace.aTristan Gingold2017-05-231-0/+2
| | | | For #352
* Rework of libraries/Makefile.inTristan Gingold2017-05-231-40/+21
| | | | For #352
* Add missing dependencies for std_standard.o, avoid rebuild.Tristan Gingold2017-05-231-11/+11
| | | | For #352
* Add gcc 7.x as a backend.Tristan Gingold2017-05-211-3/+4
|
* Makefile: add dependency on configure.Tristan Gingold2017-05-201-1/+10
|
* configure: add --disable-werrorTristan Gingold2017-05-201-0/+3
| | | | For #350
* Fix typo: paths.Tristan Gingold2017-05-181-1/+1
|
* Makefile: separate and document -gnatweTristan Gingold2017-05-091-1/+4
|
* Build libgrt.a in grt/ subdir to avoid mixing with build for ghdl1Tristan Gingold2017-04-201-1/+1
|
* configure: set abs_srcdirTristan Gingold2017-04-191-1/+2
|
* Add libs targets in Makefile.Tristan Gingold2017-04-191-0/+2
|
* scanner: use grt-fcvt for radix conversion.Tristan Gingold2017-04-191-6/+8
|
* Simplify build for llvm-nodebug.Tristan Gingold2017-04-041-4/+2
|
* Use single VM in .travis.yml to speed-up launching builds. Container are ↵1138-4EB2017-03-011-0/+3
| | | | | | | launched in parallel threads. The output of each thread is saved to a log. All of them are printed in order, after all the threads have finished. Shared ANSI color codes between libraries/vendors and dist/linux. The common file to be sourced is dist/ansi_color.sh
* gcc: move ortho-lang.c selection from configure to Makefile.inTristan Gingold2017-02-221-2/+10
| | | | For #291
* Add support for gcc 5.x and gcc 6.xTristan Gingold2017-02-211-0/+3
|
* target install.libghdlsynth addedobijuan2017-02-101-0/+2
|
* libghdlsynth: can generate so/dll file.Tristan Gingold2017-02-071-13/+23
|
* Makefile: add install.libghdlsynthTristan Gingold2017-02-021-0/+6
|
* Add ghdlsynth in ghdl_simulTristan Gingold2017-01-311-2/+15
|
* Use CXX in makefiles and configures to design the c++ compiler.Tristan Gingold2016-12-241-5/+5
|
* Makefile.in: Use @echo instead of echoTristan Gingold2016-12-241-5/+5
|
* Makefile: use LDFLAGS for ghdl_mcode and ghdl_llvmTristan Gingold2016-12-221-2/+2
|
* Be sure PWD is set (for windows).Tristan Gingold2016-12-201-0/+1
|
* ownership: fix ghdlsimulTristan Gingold2016-12-121-1/+2
|
* travis: use CLANGXX instead of CXXTristan Gingold2016-12-121-4/+7
|
* 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>
* Makefiles: use gnatmake instead of gcc to compile single Ada files.Tristan Gingold2016-11-011-3/+3
|
* Also create version.ads for ghdl1-gcc development target.Tristan Gingold2016-11-011-1/+1
|
* Create version.ads from git hash/date in version.adsTristan Gingold2016-10-201-9/+24
| | | | Fix #161
* Add suport for llvm 3.6 - 3.9Tristan Gingold2016-09-171-2/+3
|
* Add llvm-nodebug, an llvm backend more portable across llvm versions.Tristan Gingold2016-09-121-4/+5
| | | | Tested with llvm-3.8
* Makefile.in: fix library build during development.Tristan Gingold2016-09-121-1/+4
|
* Makefiles changes for $(EXEEXT) - please review. (#119)Patrick Lehmann2016-07-261-27/+27
| | | | | | * Makefiles changes for $(EXEEXT) - please review. * Moved $(EXEEXT).
* Do not use -fPIC to build libghdlvpi on windows and darwin.Tristan Gingold2016-07-211-1/+2
|
* build and vpi: adjust for windows.Tristan Gingold2016-07-201-1/+1
|