Ted Mielczarek

Results 181 comments of Ted Mielczarek

TL;DR: I don't think libbacktrace works on iOS currently, but adding iOS support to this crate shouldn't be a huge undertaking. AFAICT libbacktrace relies on [`_Unwind_Backtrace`](https://github.com/ianlancetaylor/libbacktrace/blob/bd02146d9045f0df74a1427dbf6e45db90a5d4f1/simple.c#L106) for unwinding, which doesn't...

> unless there's actually a table for async unwind tables on macOS I'm not 100% sure what you're asking here but n.b. the `__TEXT,__unwind_info` section does include an index: https://opensource.apple.com/source/libunwind/libunwind-35.1/include/mach-o/compact_unwind_encoding.h.auto.html

> Another approach would be to focus the crate dependency display on specific kinds of dependencies that are likely to be of highest interest to the user, such as critical-path...

Interestingly, AFAICT cargo does not expose the values of `linker` or `ar` from `.cargo/config` to build scripts even if they're set.

> This definitely sounds like a bug, but this is likely also a bug in Cargo as well as cc. I just spent a few minutes poking around the cargo...

Totally understood! If you or someone else have binaries laying around from running the scripts here a simple first thing to try would be to compare them against the official...

That's unfortunate. If you're trying to fetch a calendar from a different domain you'll definitely need access-control headers for CORS to work. If you look at the network panel in...

If you're just using a Google calendar, you can click "Add Google Calendars" from the settings dialog and it will ask you to grant permissions to your Google account. That's...

Added some extremely simple UI for this: https://github.com/luser/calendarview/commit/0cc136f59fc269dc63a8b7d64ef04cc0439891a3 It has an "Add Google Calendars" button which auths to Google and just adds all calendars from the Google account, and an...

Usually installing the [`build-essential`](https://packages.ubuntu.com/bionic/build-essential) metapackage is enough to build most simple software, that gives you gcc/g++ and make.