blob: 5fc22ab6854939067c82eaaca2108164b3d9107a (
plain) (
blame)
1
2
3
4
5
6
7
|
#! /bin/bash
# This script runs MCServer under valgrind
# It expects valgrind to be normally installed and available
# Note that this is for Linux only and debug-only, since it slows down MCS way too much
valgrind --log-file=valgrind.log --suppressions=vg.supp --tool=memcheck --leak-check=full --leak-resolution=high --show-reachable=yes --track-origins=yes -v ./Cuberite
|