This website requires JavaScript.
Explore
Help
Sign In
nordic-dev.net
/
rust
Watch
2
Star
0
Fork
0
You've already forked rust
mirror of
https://github.com/rust-lang/rust.git
synced
2025-06-08 05:08:40 +00:00
Code
Issues
Packages
Projects
Releases
Wiki
Activity
453b51a65a
rust
/
tests
/
run-make
/
symbol-mangling-hashed
/
hashed_dylib.rs
5 lines
75 B
Rust
Raw
Normal View
History
Unescape
Escape
Run rustfmt on `tests/run-make/`. With the exception of `tests/run-make/translation/test.rs`, which has a syntax error. The expected output in `rustdoc-error-lines/rmake.rs`'s required slight tweaking. The two `reproducible-build.rs` files need `// ignore-tidy-linelength` because rustfmt produces lines longer than 100 chars, which tidy doesn't like, yuk.
2024-05-29 05:01:33 +00:00
#![
crate_type =
"
dylib
"
]
tests: port `symbol-mangling-hashed` to rmake.rs - Use `object` based test logic instead of processing `nm` human-readable textual output. - Try to expand test coverage to not be limited to only linux + x86_64. Co-authored-by: binarycat <binarycat@envs.net>
2025-01-20 11:14:51 +00:00
pub
fn
hdhello
(
)
{
MCP #705: Provide the option `-Csymbol-mangling-version=hashed -Z unstable-options` to shorten symbol names by replacing them with a digest. Enrich test cases
2023-12-05 04:42:57 +00:00
println!
(
"
hello dylib
"
)
;
}
Reference in New Issue
Copy Permalink