惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

The Cloudflare Blog
U
Unit 42
F
Fortinet All Blogs
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
Y
Y Combinator Blog
罗磊的独立博客
V
Visual Studio Blog
大猫的无限游戏
大猫的无限游戏
J
Java Code Geeks
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
爱范儿
爱范儿
B
Blog RSS Feed
aimingoo的专栏
aimingoo的专栏
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
Microsoft Security Blog
Microsoft Security Blog
L
LangChain Blog
I
InfoQ
博客园 - 叶小钗
博客园 - 聂微东
Last Week in AI
Last Week in AI

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
🚀 ForgeZero v1.9.0 — The "Architect" Update: LSP Integrat...
Alex Voste · 2026-05-19 · via DEV Community

Alex Voste

If you've been sleeping on ForgeZero (fz) — the zero-config C build tool that actually respects your time — v1.9.0 just dropped and it's a proper glow-up. We're talking IDE superpowers, native cross-compilation, a critical bug squash, and enough test coverage to make your QA lead weep with joy. Let's break it down. 🧵


1. LSP & IDE Support — Your Editor Finally Gets It

fz -compile-commands

Enter fullscreen mode Exit fullscreen mode

One flag. That's all it takes to spit out a compile_commands.json — the Compilation Database that every serious editor lives and breathes.

What this means in practice:

  • Neovim + clangd — full autocomplete, go-to-definition, find-references. Everything just works™
  • VSCode + clang — same story, zero manual config
  • Any LSP client — if it reads compile_commands.json, it's happy

fz went from "fast build runner" to a legit professional dev environment with this single addition. Your IDE will finally stop lying to you about missing includes.


2. Cross-Compilation — Build for ARM from Your x86 Couch

Embedded devs, this one's for you. fz now ships with full cross-compilation support out of the box:

fz -target arm-linux-gnuebihf

Enter fullscreen mode Exit fullscreen mode

That's it. No hunting for toolchain paths, no manual -CC= gymnastics. fz auto-detects the correct prefixed compilers and linkers for your target triple.

Build for ARM while sitting on your x86 machine. One command. Shipped. 📦

Supported target examples:

  • arm-linux-gnuebihf — ARMv7 hard-float (Raspberry Pi and friends)
  • Any standard GNU cross-compilation triple

3. Industrial Reliability — The Boring Part That Actually Matters

Linker Coverage: 48% → 60%+

Nobody likes writing linker tests. We did it anyway. The darkest corners of the linking pipeline are now covered, which means fewer "works on my machine" surprises in CI.

🐛 Critical Bug Fix: Object Name Collisions

This one was nasty. Multi-file projects were silently producing _.o collisions — meaning files from different directories could stomp each other's object files. The result: corrupted builds that were sometimes correct, which is the worst kind of wrong.

The fix: every object file now gets a unique name derived from its full source path. No more _.o. No more collisions. Multi-file projects build reliably, every time.

Before: src/foo.c → _.o  (collision risk)
After:  src/foo.c → src_foo.o  (unique, always)

Enter fullscreen mode Exit fullscreen mode


4. UX & Infrastructure — The QoL Stuff You'll Actually Notice

Smart Self-Update with Rollback

fz -update

Enter fullscreen mode Exit fullscreen mode

Before: blew away your old binary and hoped for the best.

Now: backs up the old version to /usr/local/bin/fz.old before installing the new one. Broke something? Roll back in one move. Safe as it gets. 💊

Shell Mode Now Has Tests

The interactive shell (fz REPL mode) now has full test coverage for:

  • SplitCommand parsing
  • CmdSet handling
  • CmdBuild execution

Your in-tool console is no longer running on vibes and prayers.


5. Strict Coding Standards — fz Teaches You to Write Clean C

ForgeZero now ships with sane-by-default compiler flags in all docs and JSON command configs:

-Wall -Wextra -Werror -Wpedantic -Wshadow -Wconversion

Enter fullscreen mode Exit fullscreen mode

This isn't gatekeeping — it's a forcing function. If your code compiles cleanly with these flags, it's genuinely clean code. fz has an opinion about code quality, and it's the right opinion.

Treat warnings as errors. Your future self will thank you. Your coworkers will thank you. The universe will be in slightly better order.


TL;DR — What Shipped in v1.9.0

Feature What It Does
-compile-commands Generates compile_commands.json for LSP/IDE
Cross-compilation -target <triple> — auto-detects toolchain
Object name fix Unique .o names, no more multi-file collisions
Linker coverage 48% → 60%+ test coverage
Smart update fz -update backs up old binary to fz.old
Shell tests SplitCommand, CmdSet, CmdBuild are tested
Default flags -Wall -Wextra -Werror -Wpedantic -Wshadow -Wconversion

What's Next?

The "Architect" name wasn't chosen lightly. v1.9.0 lays the foundation for fz to become the go-to build tool for serious C projects — from single-file scripts to multi-target embedded systems.

Got feedback? Ran into an edge case? Drop it in the comments or open an issue. We read everything. 👇


Built with fz. Compiled cleanly. No warnings.