diff options
author | David Keller <david.keller@enyx.fr> | 2016-08-23 18:23:57 +0200 |
---|---|---|
committer | David Keller <david.keller@enyx.fr> | 2016-08-23 18:23:57 +0200 |
commit | 99a34fb7a2560143cca27c46ce76325e62636623 (patch) | |
tree | 7d81b702e711fa497eae5e03c44bf1bd8ab33060 | |
parent | ffc92a8cd7e71cc8c87be28580bd2fe0fbda0095 (diff) | |
download | ghdl-99a34fb7a2560143cca27c46ce76325e62636623.tar.gz ghdl-99a34fb7a2560143cca27c46ce76325e62636623.tar.bz2 ghdl-99a34fb7a2560143cca27c46ce76325e62636623.zip |
Fix synopsys V08 library that was missing std_logic_1164-body.o.
The objects from IEEE_SRCS were looked while
objects from IEEE08_SRCS were built.
Signed-off-by: David Keller <david.keller@enyx.fr>
-rw-r--r-- | libraries/Makefile.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/Makefile.inc b/libraries/Makefile.inc index 7308fa8e5..fb2d14913 100644 --- a/libraries/Makefile.inc +++ b/libraries/Makefile.inc @@ -296,7 +296,7 @@ synopsys.v08: $(ANALYZE_DEP) $(LIB08_DIR) $(SYNOPSYS08_SRCS) ieee.v08 force cd $(SYN08_DIR); \ $(CP) ../ieee/ieee-obj08.cf .; \ test x$(VHDLLIBS_COPY_OBJS) = "xno" || \ - for i in $(IEEE_SRCS) $(MATH_SRCS) $(VITAL2000_SRCS); do \ + for i in $(IEEE08_SRCS) $(VITAL2000_SRCS); do \ b=`basename $$i .vhdl`; \ if [ -f ../ieee/$$b.o ]; then \ $(LN) ../ieee/$$b.o $$b.o || exit 1; \ |