-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
To debug cargo project cause lots of 'symbol not found' problems on OSX #40787
Comments
A new problem was founded. Also on my OSX, I touch a single hello.rs file and then This time I will list all messages.
And the last issue also exists. When I use |
The second problem has been fixed by using |
I had the same issue with Cargo and |
Hello, i have exactly the same problem with gdb... |
What version of OS X and GDB/LLDB are you using? I cannot reproduce on macOS 10.12.5 with GDB 8.0 and LLDB |
I have the same problem with macOS 10.12.5 and GDB8 and the rust is 1.18. |
Ah, I can reproduce now -- not sure what changed or if I was testing wrong before. I'm seeing |
I tried, gdb can not debug rust program in mac. The binary cargo generated can not debug in lldb, while rustc -g build can. Its strange. Any blog to guide to use lldb or vscode debug cargo-generated build? Thanks. |
I also was not able to use gdb on Macosx Sierra - version 10.12.1 - to debug a rust application directly BUT i succeeded doing so in 2 different other ways:
|
@johnnysmoke Thans for the suggestion, indeed, debugging that |
I have tried to find a solution that somewhat works for this. My first observation is that running rustc -g src/hello.rs produces the correct symbols and the program is debuggable. With cargo, my workaround is to add these lines to Cargo.toml:
Running gdb with the executable from deps (gdb target/debug/deps/hello-0471cd3202c032d7) shows this output signifying that the symbols are correctly found:
|
|
My workspace is on OSX. If I
touch hello.rs
,rustc -g hello.rs
and thengdb -q hello
of a single .rs file, there won't be any problem and it will load symbols successfully. However, when I usecargo new hello --bin
,cd hello
, thencargo build
and thengdb -q target/debug/hello
, it will be a blast on my iterm full of messages as follows:and so on.. My paste is only a small part. The no-symbol message has a lot..
Hope to solve the problem~ :)
The text was updated successfully, but these errors were encountered: