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
I did cargo new --bin test_crate; cd test_crate; cargo build; objdump --dwarf=rawline target/debug/test_crate. The output for the first compilation unit has
The Directory Table (offset 0x1c):
1 libstd/sys/unix/process
2 src
The File Name Table (offset 0x39):
Entry Dir Time Size Name
1 1 0 0 process_common.rs
2 2 0 0 main.rs
If I understand #34187 correctly the intent was that the stdlib code (process_common.rs in this case) should have been given an absolute path, since test_crate/libstd/sys/unix/process/process_common.rs certainly doesn't exist. But here we are. rustc 1.31.1 (b6c32da9b 2018-12-18).
The text was updated successfully, but these errors were encountered:
This seems related to #34179 ... CCing @luser @tromey.
I did
cargo new --bin test_crate; cd test_crate; cargo build; objdump --dwarf=rawline target/debug/test_crate
. The output for the first compilation unit hasIf I understand #34187 correctly the intent was that the stdlib code (
process_common.rs
in this case) should have been given an absolute path, sincetest_crate/libstd/sys/unix/process/process_common.rs
certainly doesn't exist. But here we are.rustc 1.31.1 (b6c32da9b 2018-12-18)
.The text was updated successfully, but these errors were encountered: