From 2c44b58bb87642cdf926362d9b1aab503e2c80fa Mon Sep 17 00:00:00 2001 From: David Mak Date: Fri, 13 Oct 2023 11:22:29 +0800 Subject: [PATCH] standalone: Require use of `-T` for specifying thread count --- nac3standalone/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nac3standalone/src/main.rs b/nac3standalone/src/main.rs index 8d72405..a88be7e 100644 --- a/nac3standalone/src/main.rs +++ b/nac3standalone/src/main.rs @@ -39,7 +39,7 @@ struct CommandLineArgs { file_name: String, /// The number of threads allocated to processing the source file. - #[arg(default_value_t = 1)] + #[arg(short = 'T', default_value_t = 1)] threads: u32, /// The level to optimize the LLVM IR.