aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiodrag Milanović <mmicko@gmail.com>2021-09-18 09:16:58 +0200
committerGitHub <noreply@github.com>2021-09-18 09:16:58 +0200
commite6766b950c4b13fc7859c75011d949d5d996d653 (patch)
tree5528b6200d61eff272be290cfa1dd88fac3549df
parentc88eaea6e02337409c13237d81834972d0851d01 (diff)
parentc25122e33993b6634280bd1babef4b329c112921 (diff)
downloadyosys-e6766b950c4b13fc7859c75011d949d5d996d653.tar.gz
yosys-e6766b950c4b13fc7859c75011d949d5d996d653.tar.bz2
yosys-e6766b950c4b13fc7859c75011d949d5d996d653.zip
Merge pull request #3010 from the6p4c/master
Fix protobuf backend build dependencies - intermittent build issue due to missing rule
-rw-r--r--backends/protobuf/Makefile.inc2
1 files changed, 2 insertions, 0 deletions
diff --git a/backends/protobuf/Makefile.inc b/backends/protobuf/Makefile.inc
index 834cad42c..9cac9dcaa 100644
--- a/backends/protobuf/Makefile.inc
+++ b/backends/protobuf/Makefile.inc
@@ -3,6 +3,8 @@ ifeq ($(ENABLE_PROTOBUF),1)
backends/protobuf/yosys.pb.cc backends/protobuf/yosys.pb.h: misc/yosys.proto
$(Q) cd misc && protoc --cpp_out "../backends/protobuf" yosys.proto
+backends/protobuf/protobuf.cc: backends/protobuf/yosys.pb.h
+
OBJS += backends/protobuf/protobuf.o backends/protobuf/yosys.pb.o
endif