mirror of https://github.com/YosysHQ/yosys.git
Verific build fixes
This commit is contained in:
parent
c2f30e0de4
commit
61512b6f41
|
@ -21,7 +21,7 @@ VERIFIC_DIR = /usr/local/src/verific_lib_eval
|
||||||
2.) Install the necessary multilib packages
|
2.) Install the necessary multilib packages
|
||||||
|
|
||||||
Hint: On debian/ubuntu the multilib packages have names such as
|
Hint: On debian/ubuntu the multilib packages have names such as
|
||||||
libreadline-dev:amd64 or lib32readline6-dev, depending on the
|
libreadline-dev:i386 or lib32readline6-dev, depending on the
|
||||||
exact version of debian/ubuntu you are working with.
|
exact version of debian/ubuntu you are working with.
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -65,7 +65,7 @@ static void msg_func(msg_type_t msg_type, const char *message_id, linefile_type
|
||||||
log("\n");
|
log("\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
static void import_attributes(std::map<RTLIL::IdString, RTLIL::Const> &attributes, DesignObj *obj)
|
static void import_attributes(dict<RTLIL::IdString, RTLIL::Const> &attributes, DesignObj *obj)
|
||||||
{
|
{
|
||||||
MapIter mi;
|
MapIter mi;
|
||||||
Att *attr;
|
Att *attr;
|
||||||
|
|
|
@ -264,7 +264,7 @@ void log_pop()
|
||||||
log_flush();
|
log_flush();
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef __linux__
|
#if defined(__linux__) && defined(YOSYS_ENABLE_PLUGINS)
|
||||||
void log_backtrace(const char *prefix, int levels)
|
void log_backtrace(const char *prefix, int levels)
|
||||||
{
|
{
|
||||||
if (levels <= 0) return;
|
if (levels <= 0) return;
|
||||||
|
|
|
@ -11,8 +11,8 @@ EXTRA_OBJS += techlibs/ice40/brams_init.mk
|
||||||
.SECONDARY: techlibs/ice40/brams_init.mk
|
.SECONDARY: techlibs/ice40/brams_init.mk
|
||||||
|
|
||||||
techlibs/ice40/brams_init.mk: techlibs/ice40/brams_init.py
|
techlibs/ice40/brams_init.mk: techlibs/ice40/brams_init.py
|
||||||
cd techlibs/ice40 && python brams_init.py
|
$(P) cd techlibs/ice40 && python brams_init.py
|
||||||
touch techlibs/ice40/brams_init.mk
|
$(Q) touch techlibs/ice40/brams_init.mk
|
||||||
|
|
||||||
techlibs/ice40/brams_init1.vh: techlibs/ice40/brams_init.mk
|
techlibs/ice40/brams_init1.vh: techlibs/ice40/brams_init.mk
|
||||||
techlibs/ice40/brams_init2.vh: techlibs/ice40/brams_init.mk
|
techlibs/ice40/brams_init2.vh: techlibs/ice40/brams_init.mk
|
||||||
|
|
|
@ -10,8 +10,8 @@ EXTRA_OBJS += techlibs/xilinx/brams_init.mk
|
||||||
.SECONDARY: techlibs/xilinx/brams_init.mk
|
.SECONDARY: techlibs/xilinx/brams_init.mk
|
||||||
|
|
||||||
techlibs/xilinx/brams_init.mk: techlibs/xilinx/brams_init.py
|
techlibs/xilinx/brams_init.mk: techlibs/xilinx/brams_init.py
|
||||||
cd techlibs/xilinx && python brams_init.py
|
$(P) cd techlibs/xilinx && python brams_init.py
|
||||||
touch techlibs/xilinx/brams_init.mk
|
$(Q) touch techlibs/xilinx/brams_init.mk
|
||||||
|
|
||||||
techlibs/xilinx/brams_init_36.vh: techlibs/xilinx/brams_init.mk
|
techlibs/xilinx/brams_init_36.vh: techlibs/xilinx/brams_init.mk
|
||||||
techlibs/xilinx/brams_init_32.vh: techlibs/xilinx/brams_init.mk
|
techlibs/xilinx/brams_init_32.vh: techlibs/xilinx/brams_init.mk
|
||||||
|
|
Loading…
Reference in New Issue