This repository has been archived by the owner on Feb 27, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
Breakpoints do not work in some cases #80
Labels
Comments
Doest |
hello thank you for your reply.
|
The problems seem ocamldebug's. Ocamldebug has many small issues like those. I can help you less. Can you paste your ocaml source here? Maybe your breakpoint hasn't been hit. |
yes, here it is:
do you think it could works better on windows than on ubuntu? |
This can be debugged well. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
hello,
I installed vscode, ocaml extension with merlin on ubuntu 16.10, and all works great (merlin features) but I can't get the debugging. I followed the little video given in your readme.md file, but it doesn't apparently suffice :-(
here is my launch.json file:
{
"version": "0.2.0",
"configurations": [
}
...and my tasks.json file:
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "ocamlc",
"isShellCommand": true,
"args": ["-g", "essai1.ml"],
"showOutput": "always"
}
when I hit F5, the program runs the a.out file, and don't stop at the unconditional breakpoint I put in its middle. In the debug console, the result shows the end of the program has been reached.
What did I miss?
thank you
lowley
The text was updated successfully, but these errors were encountered: