[Bug] Version 2.1.243 fails to launch on multiple machines, autoupdate causes regression
Status Open
Reported on v2.1.241
Maintainer reply None cached
Activity 6 comments · opened Aug 25, 2026
Bug Description
claude code 2.1.243 is broken on all of my machines, i can only launch Claude Code if i revert to 2.1.241 but then autoupdate puts me right back in the same predicament. claude update, claude doctor, claude, all fail. Not even a fresh install resolves the issue. The only way I found to avoid this trap is to block autoupdate.
Environment Info
- Platform: linux
- Terminal: ghostty
- Version: 2.1.241
- Feedback ID: ec9ae07b-920b-478a-8316-0ae44b902ef1
Errors
fish: Job 1, 'claude' terminated by signal SIGSEGV (Address boundary error)
6 Comments
upvote
Same crash here, with a core dump backtrace that may help narrow it down.
Environment: CachyOS (Arch-based), kernel 7.2.0, x86_64, glibc 2.44, native install (not npm), fish 4.8.1.
Same bisection as the report: 2.1.239 works, 2.1.241 works, 2.1.243 SIGSEGVs (exit 139), no output at all, so
--versionis enough to reproduce.I first checked whether the download was simply truncated — it is not. The ELF header is self-consistent with the on-disk size: section headers start at byte 377565848, plus 41 x 64 = 377568472, which is exactly the file size. It is a complete, well-formed binary that faults.
Also of note: 2.1.243 is ~35 MB larger than 2.1.241 (342636848 -> 377568472 bytes), which hints at a toolchain or bundled-runtime change in that release.
Backtrace from
coredumpctl info:The crash happens during static initialization, before
main— frame #16 is__libc_start_mainleading intopthread_once-guarded init routines inside the binary.The faulting frame is the binary's own bundled
free(#0, at an offset inside the 2.1.243 image) being called from the system glibc's__newlocale(#1). That looks like an allocator mismatch: the bundledfreeinterposes the system symbol and is handed a pointer that system glibc allocated during locale setup, then faults withSEGV_MAPERR.Given that, glibc 2.44 may be the trigger rather than the distro as such — that would explain why it hits some machines and not others. It would be useful if other affected users posted their
ldd --versionoutput to confirm or rule out the correlation.On the autoupdate trap: setting
"autoUpdates": falsein~/.claude/settings.json(or exportingDISABLE_AUTOUPDATER=1) makes the rollback stick, so a pinned 2.1.241 survives.One caveat worth flagging for anyone rolling back on a native install:
~/.claude/chrome/chrome-native-hostis a shell wrapper with a hardcoded absolute path into~/.local/share/claude/versions/<version>. If you delete the old version directory after rolling back, the Chrome extension's native host breaks too.Same here on Omarchy Quattro.
I had forced mise to upgrade claude.
Lesson learned
Same here on EndeavorOS - exact same error in fish for 2.1.143, not in 2.1.141.
Just to note this happens on current macOS as well
The SIGSEGV in static init before main is the 2.1.243 artifact itself, not your setup, and that +35MB size delta over 2.1.241 hints at a toolchain change. To break the revert-then-autoupdate loop, add
"autoUpdates": falseto~/.claude/settings.json, then install 2.1.241 and it stays. Fresh installs won't help, they just grab 2.1.243 again.