Skip to content

Commit

Permalink
Install gawk in gcc container
Browse files Browse the repository at this point in the history
Cannot even build hello world without gawk. also it is a POSIX standard
package.
  • Loading branch information
dirkmueller committed May 7, 2024
1 parent 82e808c commit 159c5b0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/bci_build/package/gcc.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ def _is_main_gcc(os_version: OsVersion, gcc_version: _GCC_VERSIONS) -> bool:
(gcc_pkg := f"gcc{gcc_version}"),
(gpp := f"{gcc_pkg}-c++"),
"make",
"gawk",
]
+ (["gcc", "gcc-c++"] if _is_main_gcc(os_version, gcc_version) else [])
),
Expand Down

0 comments on commit 159c5b0

Please sign in to comment.