aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-05-02 20:01:21 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-05-02 20:01:21 -0400
commit5f0bddd4718cb03a28022fb9356e1d13d81e44ae (patch)
treed44e1d57c81d837060b286edfdc467aa12bc7132 /src
parentad9ac26155ab199c082a675811ece734fe70bce3 (diff)
Deprecate --c-compiler flag, since builds compiled with different
compilers won't play nice anyways
Diffstat (limited to 'src')
-rw-r--r--src/tomo.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/tomo.c b/src/tomo.c
index c8e2fa70..4d6b4bef 100644
--- a/src/tomo.c
+++ b/src/tomo.c
@@ -174,7 +174,6 @@ int main(int argc, char *argv[])
" --quiet|-q: quiet output\n"
" --parse|-p: show parse tree\n"
" --install|-I: install the executable or library\n"
- " --c-compiler <compiler>: the C compiler to use (default: "DEFAULT_C_COMPILER")\n"
" --optimization|-O <level>: set optimization level\n"
" --run|-r: run a program from " TOMO_HOME "/installed\n"
);
@@ -204,7 +203,6 @@ int main(int argc, char *argv[])
{"C", false, &Text$info, &show_codegen},
{"install", false, &Bool$info, &should_install},
{"I", false, &Bool$info, &should_install},
- {"c-compiler", false, &Text$info, &cc},
{"optimization", false, &Text$info, &optimization},
{"O", false, &Text$info, &optimization},
{"force-rebuild", false, &Bool$info, &clean_build},