Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Add qjsc -C flag to compile as classic script #978

Merged
merged 1 commit into from
Mar 17, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions qjs.c
Original file line number Diff line number Diff line change
Expand Up @@ -382,8 +382,8 @@ void help(void)
"-h --help list options\n"
"-e --eval EXPR evaluate EXPR\n"
"-i --interactive go to interactive mode\n"
"-m --module load as ES6 module (default=autodetect)\n"
" --script load as ES6 script (default=autodetect)\n"
"-C --script load as JS classic script (default=autodetect)\n"
"-m --module load as ES module (default=autodetect)\n"
"-I --include file include an additional file\n"
" --std make 'std', 'os' and 'bjson' available to script\n"
"-T --trace trace memory allocation\n"
Expand Down Expand Up @@ -498,7 +498,7 @@ int main(int argc, char **argv)
module = 1;
continue;
}
if (!strcmp(longopt, "script")) {
if (opt == 'C' || !strcmp(longopt, "script")) {
module = 0;
continue;
}
Expand Down
8 changes: 6 additions & 2 deletions qjsc.c
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,8 @@ void help(void)
"-o output set the output filename\n"
"-n script_name set the script name (as used in stack traces)\n"
"-N cname set the C name of the generated data\n"
"-m compile as Javascript module (default=autodetect)\n"
"-C compile as JS classic script (default=autodetect)\n"
"-m compile as ES module (default=autodetect)\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"
"-p prefix set the prefix of the generated C names\n"
Expand Down Expand Up @@ -390,7 +391,7 @@ int main(int argc, char **argv)
namelist_add(&cmodule_list, "bjson", "bjson", 0);

for(;;) {
c = getopt(argc, argv, "ho:N:mn:bxesvM:p:S:D:");
c = getopt(argc, argv, "ho:N:Cmn:bxesvM:p:S:D:");
if (c == -1)
break;
switch(c) {
Expand All @@ -411,6 +412,9 @@ int main(int argc, char **argv)
case 'N':
cname = optarg;
break;
case 'C':
module = 0;
break;
case 'm':
module = 1;
break;
Expand Down