Skip to content
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

debugging: locating source modules does not work. #10

Open
nilsbecker opened this issue Jan 19, 2013 · 0 comments
Open

debugging: locating source modules does not work. #10

nilsbecker opened this issue Jan 19, 2013 · 0 comments

Comments

@nilsbecker
Copy link

the debugger cannot find the values defined in an included module in the same directory.

main.ml

let sq x = x * x;;

run.ml

open Main
open Printf

let _ =
let _ = print_endline (sprintf "the square of 3 is not %d" (sq 4)) in
print_endline "something else"

now compile main.d.byte, run.d.byte, start a debug run of run.d.byte, place a breakpoint in the last line of run.ml and hover the mouse over the "sq" call.

result: "Cannot find module Main. "

was this supposed to be fixed recently?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant