[gem5-users] Re: Problem in using m5_checkpoint within C++ Application

2021-02-04 Thread Veronia Bahaa via gem5-users
Hi Gabe, Thank you very much for your reply. I have libm5.a in gem5/util/m5/build/x86/out but I still get the same error. Is it a problem with the flags I added to the makefile? Cheers, Veronia On Thu, Feb 4, 2021 at 1:01 PM Gabe Black wrote: > Hi Veronia. scons build/x86/out/m5 asks scons to

[gem5-users] Re: Problem in using m5_checkpoint within C++ Application

2021-02-04 Thread Gabe Black via gem5-users
Hi Veronia. scons build/x86/out/m5 asks scons to build the m5 utility, not the m5 library which is called build/x86/out/libm5.a. You may have some other library on your system called m5 which -lm5 is picking up which doesn't have that symbol. Gabe On Thu, Feb 4, 2021 at 3:52 AM Veronia Bahaa via