Search Criteria
Package Details: openai-codex-reasoning 0.128.0-3
Package Actions
| Git Clone URL: | https://aur.archlinux.org/openai-codex-reasoning.git (read-only, click to copy) |
|---|---|
| Package Base: | openai-codex-reasoning |
| Description: | OpenAI Codex CLI fork with inline reasoning traces |
| Upstream URL: | https://github.com/OneNoted/codex |
| Licenses: | Apache-2.0 |
| Conflicts: | openai-codex, openai-codex-bin, openai-codex-reasoning-bin |
| Provides: | openai-codex |
| Replaces: | openai-codex-reasoning-bin |
| Submitter: | Notes |
| Maintainer: | Notes |
| Last Packager: | Notes |
| Votes: | 0 |
| Popularity: | 0.000000 |
| First Submitted: | 2026-04-24 09:03 (UTC) |
| Last Updated: | 2026-05-16 21:02 (UTC) |
Dependencies (7)
- gcc-libs (gcc-libs-gitAUR, gccrs-libs-gitAUR, gcc-libs-snapshotAUR)
- glibc (glibc-gitAUR, glibc-eacAUR, glibc-git-native-pgoAUR)
- openssl (openssl-gitAUR, openssl-staticAUR, openssl-aegisAUR)
- cargo (rust-beta-binAUR, rustup-gitAUR, rust-gitAUR, rust, rustup) (make)
- git (git-gitAUR, git-glAUR, git-wd40AUR) (make)
- git (git-gitAUR, git-glAUR, git-wd40AUR) (optional) – built-in PR helpers
- ripgrep (ripgrep-gitAUR) (optional) – accelerated large-repo search
Required by (7)
- codex-acp (requires openai-codex)
- dpcode-bin (requires openai-codex) (optional)
- openai-codex-desktop (requires openai-codex)
- specify-cli (requires openai-codex) (optional)
- t3code-bin (requires openai-codex) (optional)
- t3code-git (requires openai-codex) (optional)
- t3code-nightly-bin (requires openai-codex) (optional)
Latest Comments
l3afyb0y commented on 2026-05-05 04:39 (UTC)
On current Arch defaults, makepkg enables debug, which injects Rust debuginfo. Combined with the package's already high memory usage during compilation, that caused repeated OOMs for me on a 32gb RAM system unless I forced fully serialized builds:
It looks like the main pressure comes from the package’s Rust release profile being very aggressive for end-user AUR builds, especially with lto = "fat" and codegen-units = 1. It might be worth considering options=('!debug') in the PKGBUILD, and/or overriding Cargo release settings during build, for example:
That would likely make AUR builds much more robust on stock Arch systems while still producing optimized release binaries.