Re: [gem5-users] Does Risc-V support multi-threaded applications in SE mode?

2019-08-19 Thread Alec Roelke
There has been work done on supporting multithreading with pthreads in SE mode and I believe it does work with RISC-V. If not, you can try these three patches: #16768 , #16769 ,

Re: [gem5-users] question about build errors

2019-08-19 Thread Jason Lowe-Power
Hello, What compiler are you using? Those errors are from the compiler which doesn't like implicit conversion from void*. Jason On Mon, Aug 19, 2019 at 9:47 AM Shougang Yuan wrote: > Hi, all, > > Today I suffered from a weird problem when building gem5. I make some > changes and then re-build

[gem5-users] question about build errors

2019-08-19 Thread Shougang Yuan
Hi, all, Today I suffered from a weird problem when building gem5. I make some changes and then re-build it, but the error shows like this. And when I get a new repo from gem5 without any modification, the same error shows up again. Anyone knows what happened to this? In file included from build/

[gem5-users] Where is the "actual data" that is referenced by the block?

2019-08-19 Thread Muhammet Abdullah Soytürk
Hi all, In cache_blk.hh, there is a field "uint8_t* data" and in the comment it states that this field contains a copy of the data in this block for easy access and it should be kept consistant with the "actual data" referenced by this block. Where is this "actual data" referenced by this block?