Ben Boeckel

Results 537 comments of Ben Boeckel
trafficstars

(Shot in the dark) The `--volume` option being passed to docker is probably missing a `:Z` option: `docker run -v /var/db:/var/db:Z rhel7 /bin/sh`

Anyone with Apple clout could push this PR into their attention sphere: https://github.com/apple-opensource/ld64/pull/1 It basically says "here's a library; make any symbol that is resolved here `dynamic_lookup` and in the...

> While the issue discussed here is that the very mechanism that drives dynamic_lookup no longer works in binaries using the new "chained fixups" linker feature (which is automatically enabled...

Yeah, I'm aware. I had contacts at Apple, but they've since moved elsewhere…

How do you suppose that is to work when containers and multiple users are involved? That is, what mechanism will be used to measure "uniqueness"? And why is `mold` vs....

Note that there's also things that `mold` doesn't (and cannot) know. For example, maybe there's one really expensive link that holds up some large part of the build graph. If...

I'll try and take this over…I'm interested in it enough at least.

See #4345 for my resurrection of this PR. Thanks for the base @daliusd!

Yeah, I think that'd be fine. I wish there was a way to get those Cc'd here Cc'd on a superceding issue/PR, but that's a long-standing feature request from my...

I'll note that it seems that `rustc` validates built-in attributes even if they aren't used. For example: ```rust #[path = "foo"] mod blah { #![path] // `rustc` errors even though...