Document qjsc -s flag in help output

The `-s` flag added in #388 was missing in the `-h` help output.
This commit is contained in:
Nathan Rajlich 2024-07-02 23:55:51 -07:00 committed by Saúl Ibarra Corretgé
parent 07fa1cbc4a
commit 193d1a864f

1
qjsc.c
View file

@ -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);