diff options
| author | SAJJA EASWAR <eshwarsajja20@gmail.com> | 2026-01-25 22:59:36 +0530 |
|---|---|---|
| committer | SAJJA EASWAR <eshwarsajja20@gmail.com> | 2026-01-25 22:59:36 +0530 |
| commit | ebc8b94baa6bc694cb4829e2eb2934a1f17fa6a1 (patch) | |
| tree | 71b952ad455bf17d5bdea01472f0e2297f25eabe /src/main.c | |
| parent | 863118c95caac0d69a35f6ae4d2e83844734a8a1 (diff) | |
| parent | 489336b2101bf16edeec7bfc4379408eb19b936e (diff) | |
Merge branch 'main' into pr-109
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -47,6 +47,7 @@ void print_usage() printf(" -g Debug info\n"); printf(" -v, --verbose Verbose output\n"); printf(" -q, --quiet Quiet output\n"); + printf(" --no-zen Disable Zen facts\n"); printf(" -c Compile only (produce .o)\n"); printf(" --cpp Use C++ mode.\n"); printf(" --cuda Use CUDA mode (requires nvcc).\n"); @@ -145,6 +146,10 @@ int main(int argc, char **argv) { g_config.quiet = 1; } + else if (strcmp(arg, "--no-zen") == 0) + { + g_config.no_zen = 1; + } else if (strcmp(arg, "--freestanding") == 0) { g_config.is_freestanding = 1; |
