aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/cli.h
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-01-14 23:15:45 +0900
committernsfisis <nsfisis@gmail.com>2026-01-17 00:27:28 +0900
commit98fb9ed53b6f6c7b792a751ed1f448af5c680877 (patch)
treec7f1ea9976ee8e9126e936c551622ce95bb8a6b1 /src/cli.h
parentf0351da192b8f32bdf9323b3796521cbc390c749 (diff)
downloadducc-98fb9ed53b6f6c7b792a751ed1f448af5c680877.tar.gz
ducc-98fb9ed53b6f6c7b792a751ed1f448af5c680877.tar.zst
ducc-98fb9ed53b6f6c7b792a751ed1f448af5c680877.zip
feat: support -MD flag
Diffstat (limited to 'src/cli.h')
-rw-r--r--src/cli.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/cli.h b/src/cli.h
index 6758323..f4a610a 100644
--- a/src/cli.h
+++ b/src/cli.h
@@ -9,7 +9,8 @@ typedef struct {
bool output_assembly;
bool only_compile;
bool preprocess_only;
- bool generate_deps;
+ bool generate_system_deps;
+ bool generate_user_deps;
bool totally_deligate_to_gcc;
bool wasm;
const char* gcc_command;