diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-06-13 15:31:53 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-06-13 15:31:53 -0400 |
commit | c331357a9d23982f0b6378e3e6c8476f66d1313c (patch) | |
tree | c991d276655a821fa23266b0ab8bd81505aef7cb /src/parse.c | |
parent | 491dde55a5d153b567dc20b203b492f7c73b64c0 (diff) | |
download | bfs-c331357a9d23982f0b6378e3e6c8476f66d1313c.tar.xz |
build: Include CC in bfs --version output
Diffstat (limited to 'src/parse.c')
-rw-r--r-- | src/parse.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parse.c b/src/parse.c index a626391..9035344 100644 --- a/src/parse.c +++ b/src/parse.c @@ -2962,6 +2962,7 @@ static struct bfs_expr *parse_version(struct bfs_parser *parser, int arg1, int a printf("No rights reserved (https://opensource.org/license/0BSD)\n\n"); printf("CONFIG := %s\n", bfs_config); + printf("CC := %s\n", bfs_cc); printf("CPPFLAGS := %s\n", bfs_cppflags); printf("CFLAGS := %s\n", bfs_cflags); printf("LDFLAGS := %s\n", bfs_ldflags); |