diff options
author | Tristan Gingold <tgingold@free.fr> | 2023-01-18 20:46:38 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2023-01-20 21:54:34 +0100 |
commit | 79542b1680f1dcd3e746a584ff1bf198f50c8486 (patch) | |
tree | 53ceb6dc1af2af1b2b838ba0e54c90b088f9b5c4 /scripts/gcc | |
parent | 5bae163c99500d2395391a40b55d2c5618eaccd1 (diff) | |
download | ghdl-79542b1680f1dcd3e746a584ff1bf198f50c8486.tar.gz ghdl-79542b1680f1dcd3e746a584ff1bf198f50c8486.tar.bz2 ghdl-79542b1680f1dcd3e746a584ff1bf198f50c8486.zip |
synth: add partial support of foreign subprograms
Diffstat (limited to 'scripts/gcc')
-rw-r--r-- | scripts/gcc/Make-lang.in.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/gcc/Make-lang.in.in b/scripts/gcc/Make-lang.in.in index cdea74be8..26737ef07 100644 --- a/scripts/gcc/Make-lang.in.in +++ b/scripts/gcc/Make-lang.in.in @@ -51,7 +51,7 @@ vhdl VHDL: ghdl1$(exeext) ghdl$(exeext) # Tell GNU Make to ignore these, if they exist. .PHONY: vhdl VHDL -GHDL1_OBJS = attribs.o vhdl/ortho-lang.o vhdl/grt-cstdio.o +GHDL1_OBJS = attribs.o vhdl/ortho-lang.o vhdl/grt-cstdio.o vhdl/grt-cdynload.o # To be put in ALL_HOST_FRONTEND_OBJS, so that generated files are created # before. @@ -117,7 +117,7 @@ vhdl/default_paths.ads: Makefile echo "end Default_Paths;" >> tmp-dpaths.ads $(srcdir)/../move-if-change tmp-dpaths.ads $@ -GHDL_GRT_OBJS=vhdl/grt-cstdio.o +GHDL_GRT_OBJS=vhdl/grt-cstdio.o vhdl/grt-cdynload.o # The driver for ghdl. Depends on ghdl1 to use object files in vhdl/ subdir. ghdl$(exeext): ghdl1$(exeext) $(GHDL_GRT_OBJS) vhdl/default_paths.ads force |