Skip to content

Commit

Permalink
Merge pull request snabbco#182 from lukego/readme-vmprofile-filename
Browse files Browse the repository at this point in the history
README.md: Correct profile names to *.vmprofile (expected by studio)
  • Loading branch information
lukego authored Aug 9, 2018
2 parents 5171334 + fcf138f commit 9056918
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,15 @@ To understand how your program executes you first produce diagnostic data (*audi
You can produce diagnostic data on the command line:

```shell
$ raptorjit -a audit.log -p default.profile ...
$ raptorjit -a audit.log -p default.vmprofile ...
```

Or within your Lua code:

```lua
jit.auditlog("audit.log")
local vmprofile = require("jit.vmprofile")
vmprofile.open("default.profile")
vmprofile.open("default.vmprofile")
```

Then you can copy the file `audit.log` and `*.vmprofile` into a
Expand Down

0 comments on commit 9056918

Please sign in to comment.