aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cli.h
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2025-09-13 00:05:12 +0900
committernsfisis <nsfisis@gmail.com>2025-09-13 01:38:56 +0900
commit8de7fa9da5fd8015f4fcc826b9270061b7b89478 (patch)
treeec9c1e56f179be207c31a113a0a96210f7509431 /src/cli.h
parentd41a97e957ef616d194f60b9b79820cd0162d920 (diff)
downloadducc-8de7fa9da5fd8015f4fcc826b9270061b7b89478.tar.gz
ducc-8de7fa9da5fd8015f4fcc826b9270061b7b89478.tar.zst
ducc-8de7fa9da5fd8015f4fcc826b9270061b7b89478.zip
feat: implement -E flag (preprocess only)
Diffstat (limited to 'src/cli.h')
-rw-r--r--src/cli.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/cli.h b/src/cli.h
index ec1fa50..3b1e7f5 100644
--- a/src/cli.h
+++ b/src/cli.h
@@ -8,6 +8,7 @@ typedef struct {
const char* output_filename;
bool output_assembly;
bool only_compile;
+ bool preprocess_only;
bool generate_deps;
bool totally_deligate_to_gcc;
const char* gcc_command;