Error while simulating amiq_eth-master from github

Hi there

I am trying to run amiq_eth-master from github using
amiq_eth-master/scripts/run.sh -tool questa

I get this error

candidate: void uvmc::uvmc_packer::init_pack(bits_t*, int) <near match>
   void init_pack(bits_t *bits, int level=0);

using uvm-1.1d and uvmc 2.2 that was in the dir from github

It uses UVMC. I am not that familiar with it as yet

Many thanks

In reply to jennra:

UVMC is a package that links SystemC with UVM. You might have an incompatible C++ compiler. Without seeing the code, it will difficult to help you. You may need to contact AMIQ.

In reply to jennra:

Yes I agree with Dave, perhaps we need a bit more context to see what’s
going on here. Usually a “candiate: …” message accompanies another error
message indicating a mismatched function call profile and showing the specific
line number in the code where the call is made.

Be sure that you’re at least passing a ‘bits_t *’ data type as the
first arg to the init_pack() call. Second arg defaults to 0 so can
be optionally given.