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 know this function was compiled with a const generic, and I'd like to know what the value of that generic was. I produced this symbol by running cargo build --release -- --emit=asm and reading the .s file.
target: darwin aarch64
version: 0.1.23
The text was updated successfully, but these errors were encountered:
The const generic value is not recoverable from the symbol in the default mangling scheme. You'd need to build with RUSTFLAGS='-C symbol-mangling-version=v0' to get more information in the symbols.
Maybe I'm doing something wrong, but here's an example of a symbol I can't seem to demangle:
__ZN3pco25latent_batch_decompressor32LatentBatchDecompressor$LT$U$GT$18decompress_offsets17h254da28dd89d69cbE
I just get this back:
__ZN3pco25latent_batch_decompressor32LatentBatchDecompressordecompress_offsets17h254da28dd89d69cbE
I know this function was compiled with a const generic, and I'd like to know what the value of that generic was. I produced this symbol by running
cargo build --release -- --emit=asm
and reading the.s
file.target: darwin aarch64
version: 0.1.23
The text was updated successfully, but these errors were encountered: