Landing: bb42c397de7b
Project / Subsystem
gcc / ada
Date
2026-03-25
Author
Ronan Desplanques
Commit
bb42c397de7bde478a3c249a57f1af629e1a6772
Source
github
Perf win
No
Breaking
No
All attributes
- project
- gcc
- subsystem
- ada
- patch_id
- —
- commit_hash
- bb42c397de7bde478a3c249a57f1af629e1a6772
- source_type
- github
- headline
- Fix light runtime configurations in Ada by moving code
- tldr
- This commit resolves a dependency issue in Ada's light runtime configurations by moving environment-related code from `argv.c` to `env.c`.
- author
- Ronan Desplanques
- outcome
- committed
- performance_win
- false
- breaking_change
- false
- series_id
- —
- series_parts
- []
- tags
-
- • ada
- • runtime
- • configuration
- discussion_id_link
- —
- bugzilla_pr
- —
- date
- 2026-03-25T00:00:00.000Z
This commit addresses a dependency issue that arose in Ada’s light runtime configurations. A recent change introduced a dependency from argv.c (command-line argument processing) to env.c (environment variable handling). This broke configurations that support command-line arguments but not environment variables. The fix moves the environment-related code from argv.c to env.c, restoring functionality to these configurations.