2025 and clang-format still can't enforce a space before function calls https://releases.llvm.org/20.1.0/tools/clang/docs/ClangFormatStyleOptions.html #llvm #clang #format
2025 and clang-format still can't enforce a space before function calls https://releases.llvm.org/20.1.0/tools/clang/docs/ClangFormatStyleOptions.html #llvm #clang #format
Great news everybody! We are moving #MetaCG development into the open!
I wrote a brief blog post about it: https://jplehr.de/2025/03/31/metacg-development-moves-into-open/
We just released wasmVision 0.3.1 as a quick followup to what was learned/fixed at #wasmio25 thanks everyone who came to the talk or spoke to @deadprogram afterwards!
Changelog here:
https://github.com/wasmvision/wasmvision/releases/tag/v0.3.1
A new #blog post appears!
I built a native GCC 14.2.0 for Mac OS X 10.4 Tiger PowerPC.
Thanks to everyone who came to my talk at WASM I/O yesterday about @wasmvision
As promised, slides are now available here https://deadprogram.github.io/wasmio2025/#/
#wasmio25 #wasm #computervision #golang #tinygo #rust #clang #opencv
wasmVision 0.3.0 is out! We have some exiting new features for you such as MCP server support, and experimental GPU acceleration for vision models. Performance and stability improvements too. Go get it right now!
#wasm #computervision #opencv #golang #tinygo #rust #clang #mcp #cuda
https://github.com/wasmvision/wasmvision/releases/tag/v0.3.0
Want to see what you can do with computer vision and WebAssembly? Come to my talk next week at WASM I/O...
#wasmio25 #wasm #webassembly #computervision #golang #tinygo #rustlang #clang
https://2025.wasm.io/sessions/seeing-eye-to-eye-computer-vision-using-wasmvision/
Unlocking Performance: How to Rebuild Ubuntu Packages for 90% Speed Gains
Discover how a simple rebuild of the jq package can lead to dramatic performance improvements. This article dives into the technical steps taken to achieve nearly double the speed of JSON processing i...
https://news.lavx.hu/article/unlocking-performance-how-to-rebuild-ubuntu-packages-for-90-speed-gains
Is there a way to get #Apple #Clang to warn on aggregate initialization w/ designated initializers in the wrong order? In C++ it's supposed to be illegal to aggregate-initialize a struct in any other order than declaration order, but Clang never warns on that so I don't catch it until CI complains or I try to compile the code on a Linux machine
Wrote new blog post this weekend about how Function Prologues & Epilogues work in Assembly and C.
https://bugwhisperer.dev/blog/prologue-epilogue-in-assembly-and-c/
gemini://bugwhisperer.dev/posts/prologue-epilogue-in-assembly-and-c.gmi
#assembly #clang #c #riscv #blogging
Oh yay #clangformat updated and is now even worse
(No this can't be fixed, give me a .clang-format file which fixes this particular case and I guarantee it'll break 10 other cases)
Stumbled on a interesting long standing bug in clang, rejecting valid C++ code.
> error: reference to local variable '?' declared in enclosing function '?'
https://github.com/llvm/llvm-project/issues/41751#issuecomment-2704356989
It's been [ 0 ] days since I have accidentally created a file called `pt-bisect-limit=-1` when debugging LLVM.
TIL: C array subscript operators are handled in such a way that `letters[i]` is equivalent to `*(letters + i)` and because addition is commutative, that expression is identical to `*(i + letters)`, which means that `i[letters]` is the same as `letters[i]`.
```
#include <stdio.h>
#include <stddef.h>
int main() {
char letters[3] = "abc";
size_t i = 2;
printf("letters: %p\n", (void *)&letters);
printf("i[letters] (%p): %c\n", (void*)&(i[letters]), i[letters]);
printf("letters[i] (%p): %c\n", (void*)&(letters[i]), letters[i]);
return 0;
}
```
Which outputs:
```
letters: 0x7ffc68ec7bb9
i[letters] (0x7ffc68ec7bbb): c
letters[i] (0x7ffc68ec7bbb): c
```
Mind blown...
#til #clang #pointers #programming
Clang Static Analyzer and the Z3 constraint solver
https://www.cambus.net/clang-static-analyzer-and-the-z3-constraint-solver/
#ycombinator #llvm #clang #scan_build #static #analysis #constraint #solver #cambus_net