avadhpatel / marss

PTLsim and QEMU based Computer Architecture Research Simulator
http://www.marss86.org
129 stars 63 forks source link

Error when building with debug enabled #52

Closed CEBeard3 closed 7 years ago

CEBeard3 commented 7 years ago

When trying to build with the debug flag enabled I am getting this error: error: use of deleted function 'YAML::Emitter& YAML::Emitter::operator=(const YAML::Emitter&)' in ptlsim/build/tests/stats-tests.cpp, I am unsure if this is why I am getting no output to my stats file but I feel like this is a problem. Any advice on how to solve this issue would be appreciated.

fitzfitsahero commented 7 years ago

When I updated the YAML code to c++11 I never bothered to touch the stats-tests code.

Clean your build, move or delete stats-tests.cpp, then build again. That should fix the issue

CEBeard3 commented 7 years ago

Thank you, that solved the issue