About "monitor.cc"
Hi, everyone!
I have a question about the file monitor.cc in OpenSAPRCT1.1.4.
The filemonitor.cc located in \OpenSPARCT1.1.4\verif\env\iss\pli\monitor\c.
Has there anyone read and discussed it ?
Is it been used in regression or not ?
I have modified the file, but sims.log got no change at all .So i doubt whether this file has been compiled in regression.
Thanks!
[416 byte] By [
Seven7a] at [2007-11-27 5:12:56]

# 1
monitor.cc is part of the PLI library.
The PLI libraries are compiled separately from the RTL, using the mkplilib script. You probably did this once already after reading the DV manual and promptly forgot about it. :)
The mkplilib script is completely separate from the sims script and there is no dependency detection, so unless you run mkplilib again (then run the sims regression), you'll always link with last compiled PLI library.
This issue has bitten me more than once.
- Jared
# 2
> monitor.cc is part of the PLI library.
>
> The PLI libraries are compiled separately from the
> RTL, using the mkplilib script. You probably did
> this once already after reading the DV manual and
> promptly forgot about it. :)
>
> The mkplilib script is completely separate from the
> sims script and there is no dependency detection, so
> unless you run mkplilib again (then run the sims
> regression), you'll always link with last compiled
> PLI library.
>
> This issue has bitten me more than once.
>
> - Jared
Thank u!