fix(phase-285): restore weak_basic_llvm + complete LLVM detection/quick SSOT

This commit is contained in:
2025-12-26 16:32:37 +09:00
parent ce2baa0d47
commit 606e236d6d
9 changed files with 48 additions and 35 deletions

View File

@ -30,7 +30,7 @@ pub fn parse() -> CliConfig {
pub fn build_command() -> Command {
Command::new("nyash")
.version("1.0")
.version(if cfg!(feature = "llvm") { "1.0 features:llvm" } else { "1.0" })
.author("Claude Code <claude@anthropic.com>")
.about("🦀 Nyash Programming Language - Everything is Box in Rust! 🦀")
.arg(Arg::new("dev").long("dev").help("Enable development defaults (AST using ON; Operator Boxes observe; safe diagnostics)").action(clap::ArgAction::SetTrue))