Skip to content

Commit

Permalink
Add profinfo, profinfo_width to ocamlrun -config
Browse files Browse the repository at this point in the history
  • Loading branch information
dra27 committed Feb 5, 2020
1 parent 44bccc9 commit bb59a99
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions runtime/startup_byt.c
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,13 @@ static void do_print_config(void)
"true");
#else
"false");
#endif
printf("profinfo: %s\n"
"profinfo_width: %d\n",
#ifdef WITH_PROFINFO
"true", PROFINFO_WIDTH);
#else
"false", 0);
#endif
printf("exec_magic_number: %s\n", EXEC_MAGIC);

Expand Down

0 comments on commit bb59a99

Please sign in to comment.