diff options
author | Danny van Kooten <dannyvankooten@users.noreply.github.com> | 2020-12-04 09:52:35 +0100 |
---|---|---|
committer | Danny van Kooten <dannyvankooten@users.noreply.github.com> | 2020-12-04 09:52:35 +0100 |
commit | 0501ee7b850936db0e518dc734e62db13cd07006 (patch) | |
tree | 15ae4eac42c1b012628fbaacbf8a93f4ee5f359b /Vagrantfile | |
parent | 0ff26657d59715ac875fb7949a58a08039b5739e (diff) | |
download | unja-0501ee7b850936db0e518dc734e62db13cd07006.tar.gz unja-0501ee7b850936db0e518dc734e62db13cd07006.zip |
add context_free function for easily getting rid of context
Diffstat (limited to 'Vagrantfile')
-rw-r--r-- | Vagrantfile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Vagrantfile b/Vagrantfile index 104f577..dd3f6c1 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -1,8 +1,9 @@ # A basic Vagrant box to be able to use GDB and Valgrind for debugging # Usage: -# 1. Start the machine using `vagrant up` -# 2. SSH into the machine using `vagrant ssh` -# 3. +# 1. Start the machine: `vagrant up` +# 2. SSH into the machine: `vagrant ssh` +# 3. Move into the project directory: `cd /vagrant` +# 4. Run find_memleaks on the binary you want to check: `find_memleaks bin/test_template` # # # -*- mode: ruby -*- |