aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-12-21 17:04:08 -0500
committerBruce Hill <bruce@bruce-hill.com>2025-12-21 17:06:16 -0500
commit7b3a651da64e3e1951ab01e5650c5ceaa1dd5d84 (patch)
treee0dd9ca2f01661c483bf8a24eaa1c50a2dfbfb8d /src
parent07cc08924a9a15b4f743a68e0eabf8337b0b446a (diff)
Remove xxd dependency (no more building with changelog)
Diffstat (limited to 'src')
-rw-r--r--src/tomo.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/src/tomo.c b/src/tomo.c
index f829951c..1517259e 100644
--- a/src/tomo.c
+++ b/src/tomo.c
@@ -14,7 +14,6 @@
#endif
#include "ast.h"
-#include "changes.md.h"
#include "compile/cli.h"
#include "compile/files.h"
#include "compile/headers.h"
@@ -77,7 +76,7 @@ static const char *paths_str(List_t paths) {
#endif
static OptionalBool_t verbose = false, quiet = false, show_version = false, show_prefix = false, clean_build = false,
- source_mapping = true, show_changelog = false, should_install = false;
+ source_mapping = true, should_install = false;
static List_t format_files = EMPTY_LIST, format_files_inplace = EMPTY_LIST, parse_files = EMPTY_LIST,
transpile_files = EMPTY_LIST, compile_objects = EMPTY_LIST, compile_executables = EMPTY_LIST,
@@ -244,7 +243,6 @@ int main(int argc, char *argv[]) {
{"optimization", &optimization, &Text$info, .short_flag = 'O'}, //
{"force-rebuild", &clean_build, &Bool$info, .short_flag = 'f'}, //
{"source-mapping", &source_mapping, &Bool$info, .short_flag = 'm'},
- {"changelog", &show_changelog, &Bool$info}, //
};
tomo_parse_args(argc, argv, usage, help, TOMO_VERSION, sizeof(tomo_args) / sizeof(tomo_args[0]), tomo_args);
@@ -253,11 +251,6 @@ int main(int argc, char *argv[]) {
return 0;
}
- if (show_changelog) {
- print_inline(string_slice((const char *)CHANGES_md, (size_t)CHANGES_md_len));
- return 0;
- }
-
if (show_version) {
if (verbose) print(TOMO_VERSION, " ", GIT_VERSION);
else print(TOMO_VERSION);