From 5f649fc19d5cef76a634572ad0a493f1d2fd6306 Mon Sep 17 00:00:00 2001 From: Xiretza Date: Wed, 8 Apr 2020 15:25:16 +0200 Subject: [PATCH] Add constids.inc to final install If this is not present in the install, #include-ing most yosys headers will fail in rtlil.h:380. --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index df9d541a2..218863b32 100644 --- a/Makefile +++ b/Makefile @@ -533,6 +533,7 @@ $(eval $(call add_include_file,kernel/register.h)) $(eval $(call add_include_file,kernel/celltypes.h)) $(eval $(call add_include_file,kernel/celledges.h)) $(eval $(call add_include_file,kernel/consteval.h)) +$(eval $(call add_include_file,kernel/constids.inc)) $(eval $(call add_include_file,kernel/sigtools.h)) $(eval $(call add_include_file,kernel/modtools.h)) $(eval $(call add_include_file,kernel/macc.h))