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
New Features in CLion’s Bazel Plugin: Custom Toolchains and Windows Support
#Clang #CLion #News #Tipstricks #Bazel #Gcc #Llvm #Msvc
https://blog.jetbrains.com/clion/2025/04/new-features-in-bazel-plugin/
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
lightweight open source Kamakura browser
The stories we could tell though … #OpenSource #clang
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
Building Node.js on Windows with Clang-cl
https://joyeecheung.github.io/blog/2025/02/16/building-nodejs-on-windows-with-clang-cl/
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
sed magic is required for adding the dependencies of the .d file itself. For example, if the timestamp of your header changes, it may have acquired new dependencies, and a new .d file has to be generated BEFORE make determines if the .c file is out of date.
MT flag which does what the sed line does. From the gcc man page:
Change the target of the rule emitted by dependency generation... An -MT option will set the target to be exactly the string you specify... So in your example one might do something like
-MT "$@ $(basename $@).d" which would output
main.o main.d : main.c defs.h for the main.o target.
#clang #gcc
https://news.ycombinator.com/item?id=15070140
https://www.gnu.org/software/make/manual/html_node/Automatic-Prerequisites.html