You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Symlink dSYM on macOS example binaries.
Examples previously ended up with a layout such as:
```
target/debug/examples/ex1
target/debug/examples/ex1.d
target/debug/examples/ex1-966e505ad4696130
target/debug/examples/ex1-966e505ad4696130.d
target/debug/examples/ex1-966e505ad4696130.dSYM/…
```
If you attempt to run lldb on the executable without the hash (`target/debug/examples/ex1`), then symbols could not be found. This PR solves this by creating a symlink from `ex1.dSYM -> ex1-966e505ad4696130.dSYM`.
Closes#6889
Problem
Cargo doesnt create dSYM symlinks for examples.
Steps
find_debug.dSYM
.Possible Solution(s)
Notes
Output of
cargo version
:This is using the cargo for rustc 1.34.1
The text was updated successfully, but these errors were encountered: