mirror of
https://github.com/DoneJS-Runtime/quickjs-done-nextgen.git
synced 2025-01-09 17:43:15 +00:00
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:
parent
07fa1cbc4a
commit
193d1a864f
1 changed files with 1 additions and 0 deletions
1
qjsc.c
1
qjsc.c
|
@ -332,6 +332,7 @@ void help(void)
|
||||||
"-D module_name compile a dynamically loaded module or worker\n"
|
"-D module_name compile a dynamically loaded module or worker\n"
|
||||||
"-M module_name[,cname] add initialization code for an external C module\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"
|
"-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",
|
"-S n set the maximum stack size to 'n' bytes (default=%d)\n",
|
||||||
JS_GetVersion(),
|
JS_GetVersion(),
|
||||||
JS_DEFAULT_STACK_SIZE);
|
JS_DEFAULT_STACK_SIZE);
|
||||||
|
|
Loading…
Reference in a new issue