|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
各位大神,最近在学 UVM,刚上手就遇到 问题,搞了好久都 未能找到原因,请大家帮忙看看。
我的 vcs 编译 环境 如下
compile:
@echo TOP file: $(RTL_FILES)
@-rm vector.sv
if(-e ../testcases/$(VEC).sv) cp -f ../testcases/$(VEC).sv ./vector.sv
$(VLOGAN) $(VLG_PAR) -ntb_opts uvm-1.1 $(INC_DIR) $(DEFINE) $(RTL_FILES) $(LIB_FILES) $(TB_FILES)
$(VCS) -ntb_opts uvm-1.1 $(UVM_HOME)/src/dpi/uvm_dpi.cc $(VCS_PAR) -CC -DVCS +UVM_VERBOSITY=$(UVM_VERBOSITY)
simv:
@echo $(VCS_HOME) $(VCS_FULL) $(DATE)
./simv $(SIM_PAR)
ifeq ($(COSIM), 1)
make mergevpd
endif
#----------------------------------------------------
# Design and Testbench File List
#----------------------------------------------------
#ifeq ($(STAGE), RTL)
# RTL_FILES= -f ../../rtl/rtl_list.f
#endif
RTL_FILES= ../../dut/dut.sv
ifeq ($(STAGE), PRE)
RTL_FILES= -f ../../netlist/PRE/netlist.f
endif
ifeq ($(STAGE), POST)
RTL_FILES= -f ../../netlist/POST/netlist.f
endif
TB_FILES+=\
$(UVM_HOME)/src/uvm_pkg.sv \
$(UVM_HOME)/src/uvm.sv \
./tb_top.sv
INC_DIR+=\
+incdir+$(UVM_HOME)/src \
+incdir+$(VCS_HOME)/packages/sva
但是 在 编译 过程中,总是 报以下 错误:
Error-[TMENF-ILL] Top Module/Entity not found
Top module/entity/config "uvm_custom_install_recording" is not found in the
following library list.
Liblist: DEFAULT
1 warning
1 error
CPU time: .745 seconds to compile
common elaboration failed
我一直 没搞懂 “uvm_custom_install_recording” 这个是 什么 ,网络上 也找不到 资料。有没有 遇到 这个 问题的,请 不吝赐教。
|
|