diff options
author | Tristan Gingold <tgingold@free.fr> | 2015-01-23 06:40:47 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2015-01-23 06:40:47 +0100 |
commit | d4513ae22c1bacffa3ee003b6be9ed342e6d4c77 (patch) | |
tree | 044d528227bb321d22daa380e850f70dab632fc8 /dist | |
parent | 2031c52e845d17f4b96011b88f814b7af467cdd5 (diff) | |
download | ghdl-d4513ae22c1bacffa3ee003b6be9ed342e6d4c77.tar.gz ghdl-d4513ae22c1bacffa3ee003b6be9ed342e6d4c77.tar.bz2 ghdl-d4513ae22c1bacffa3ee003b6be9ed342e6d4c77.zip |
dist/gcc: fix missing dependency in Make-lang.in
Diffstat (limited to 'dist')
-rw-r--r-- | dist/gcc/Make-lang.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dist/gcc/Make-lang.in b/dist/gcc/Make-lang.in index e8c078ef6..8aa15e922 100644 --- a/dist/gcc/Make-lang.in +++ b/dist/gcc/Make-lang.in @@ -124,8 +124,8 @@ ghdl$(exeext): ghdl1$(exeext) vhdl/default_pathes.ads force -bargs -E -cargs $(ADA_CFLAGS) $(GHDL_ADAFLAGS) -largs $(LIBS) if test $@ -nt s-ghdllib; then $(RM) -f s-ghdllib; fi -# Ghdl libraries. -s-ghdllib: ghdl$(exeext) ghdl1$(exeext) +# Ghdl libraries. Also depends on xgcc to build std_standard.o +s-ghdllib: ghdl$(exeext) ghdl1$(exeext) $(GCC_PASSES) $(MAKE_IN_VHDL) ghdllib touch $@ |