beehive-lab / Maxine-VM

Maxine VM: A meta-circular research VM
GNU General Public License v2.0
323 stars 63 forks source link

"-XX:-LogGC" and "-XX:-TraceGC" didn't take effect, I need some guidance #31

Closed Buenbk closed 2 years ago

Buenbk commented 2 years ago

Here's my output

root@e52a8299e018:~/maxine-src/maxine# mx vm -cp test/bin test.output.GCTest0 -XX:-LogGC
GCTest0 started.
GCTest0 done.
root@e52a8299e018:~/maxine-src/maxine# mx vm -cp test/bin test.output.GCTest0 -XX:-TraceGC
GCTest0 started.
GCTest0 done.

There's no GC Log information. Please give me some guidance.

kotselidis commented 2 years ago

mx vm -verbose:gc -cp test/bin test.output.GCTest0

Buenbk commented 2 years ago

thank you