-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Breakpoints do not work in some cases #80
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. |
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: