Ted Mielczarek

Results 44 issues of Ted Mielczarek

I keep running into this when hacking on this crate. I think the root of the problem is that [`SourceView::as_slice`](https://github.com/willglynn/pdb/blob/8f058d0c3638bf322e8c39fb6db35c17386bf2a4/src/source.rs#L57) returns a slice whose lifetime matches the lifetime of the...

I wrote a crate called [test-assembler](https://crates.io/crates/test-assembler) a while ago, ported from some C++ code a coworker wrote for the Breakpad project. It's got a fairly nice API for spelling out...

help wanted

[The code that handles array fields ](https://github.com/m4b/scroll_derive/blob/f41ecd49b76d835c48e3e0c0f0b44e7e1a391d50/src/lib.rs#L21) initializes its temporary array to `[0; #size as usize]`, which doesn't work for an array of structs, like: ```rust #[derive(Pread)] struct A {...

Your FAQ says "you don't", but it's totally feasible. It'd be nice to make this easier. I cross-compiled Servo from Linux to Mac: https://gist.github.com/luser/a33e5070d1c55a7d2c46fe763a9d1543 You need: 1. clang 2. cctools...

_Adapted from https://github.com/luser/rust-minidump/issues/438#issuecomment-1042076199_ It might be worth implementing a Mach-O equivalent to the [`CV_INFO_ELF`](https://docs.rs/minidump/latest/minidump/format/struct.CV_INFO_ELF.html) I implemented years ago. One could imagine adding something like: ```rust pub struct CV_INFO_MACHO_UUID { pub...

cool dream

If you write a full memory dump on Windows by calling `MiniDumpWriteDump` with `MiniDumpWithFullMemory` you get a dump that's just different enough that Breakpad and this crate can't do anything...

enhancement

This isn't incredibly important, but I did write a proof of concept implementation of this a while ago that I stumbled upon, it's on the `dump-command-line` branch: https://github.com/luser/rust-minidump/commit/4f6eae86dd16f0aaf0b6a8056989d76b691a9934 https://github.com/luser/rust-minidump/commits/dump-command-line It...

cool dream

It looks like the hostname for the Lifeboat network is now `play.lbsg.net` per: https://minecraft.gamepedia.com/Featured_servers However, I couldn't get Minecraft on the Switch to connect to my local server when I...

Hey there! A colleague of mine pointed me at this repo and it looks awesome! I just recently published the [Rust minidump crate](https://github.com/luser/rust-minidump) I had been written while learning Rust,...

enhancement

I was looking up info on GDB's `.gdb_index` section today and found that it has been superseded by the DWARF 5 `.debug_names` section. gdb ships a helper tool (`gdb-add-index`) that...