From 193d1a864f732b8589243d93dfa2fbb4f08f45e5 Mon Sep 17 00:00:00 2001 From: Nathan Rajlich Date: Tue, 2 Jul 2024 23:55:51 -0700 Subject: [PATCH] Document `qjsc -s` flag in help output The `-s` flag added in #388 was missing in the `-h` help output. --- qjsc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/qjsc.c b/qjsc.c index f9a07db..95a22d6 100644 --- a/qjsc.c +++ b/qjsc.c @@ -332,6 +332,7 @@ void help(void) "-D module_name compile a dynamically loaded module or worker\n" "-M module_name[,cname] add initialization code for an external C module\n" "-p prefix set the prefix of the generated C names\n" + "-s strip the source code, specify twice to also strip debug info\n" "-S n set the maximum stack size to 'n' bytes (default=%d)\n", JS_GetVersion(), JS_DEFAULT_STACK_SIZE);