Viewing profile — nuudlman
nuudlman
HN member- Joined
- Fri, Apr 26, 2024, 10:54 PM UTC
- HN karma
- 20
- Public activity
- 13 items
- HN profile
- View on Hacker News ↗
About nuudlman
No profile information was provided.
Recent public activity
-
comment
Comment #46421405
I'm not sure about moral per se, but LLVM is practically a painful dependency—it doesn't have API compatibility between versions, release builds are rapidly approaching a gigabyte,…
-
comment
Comment #46331540
Vulkan capture support on Windows was introduced in v25 (on linux you need to use a plugin). There is no Vulkan renderer support—which the post clearly stated...
-
comment
Comment #46260867
This feels like pfexec on Illumos/Solaris, although I’m too unqualified to say for certain.
-
comment
Comment #46209739
With the common case of SimplifyCFG turning this into an assumption (for ReleaseFast), this is UB (LLVM def) unless you can prove that the assumption always holds. I suppose that's…
-
comment
Comment #45820157
Do you have any specific examples here? While no compiler is perfect (e.g., pointer provenance), one could just as easily argue that Clang has higher quality—most modern C/++ tooli…
-
comment
Comment #43224793
Take a look at Pony https://www.ponylang.io/
-
comment
Comment #42318290
Linking is very parallelizable: see the mold linker for a demonstration.
-
comment
Comment #42141975
It's a lot faster to add a log point in a debugger than to add a print statement and recompile. Especially with cargo check, I really don't see the point of non-debuggable builds (…
-
comment
Comment #42140541
Not linking debug info must be some kind of sick joke. What is the point of a debug build without symbols?
-
story
Show HN: Launching my blog by talking about improving C++ build perf
The techniques discussed aren't anything new, but they might be useful if you are still using Makefiles. I'm new to blog writing, so please leave feedback so I can improve!
-
comment
Comment #40764128
The fun thing with branch predictors is that they tell you where the next branch is (among other things like the direction of the branch). Since hardware is built out of finite wir…
-
comment
Comment #40676642
A lot of this seems like it's done by Arcan ( https://arcan-fe.com )
-
comment
Comment #40304092
This talk was enormously educational when I first dove into LLVM and modern compilers last January—Chandler is a great speaker.