Fix -pthread option handling

adding -pthread confused option parsing as the number of file counting
came out wrong.  Simplify and fit it, can be handled purely within
option parsing, no need for a state flag.
This commit is contained in:
Michael Matz 2017-12-23 14:14:57 +01:00
parent d348a9a51d
commit 3f8225509b
3 changed files with 3 additions and 6 deletions

View File

@ -1742,13 +1742,14 @@ reparse:
tcc_set_lib_path(s, optarg);
break;
case TCC_OPTION_l:
add_lib:
args_parser_add_file(s, optarg, AFF_TYPE_LIB);
s->nb_libraries++;
break;
case TCC_OPTION_pthread:
parse_option_D(s, "_REENTRANT");
s->option_pthread = 1;
break;
optarg = "pthread";
goto add_lib;
case TCC_OPTION_bench:
s->do_bench = 1;
break;

3
tcc.c
View File

@ -297,9 +297,6 @@ redo:
tcc_error("cannot specify libraries with -c");
if (n > 1 && s->outfile)
tcc_error("cannot specify output file with -c many files");
} else {
if (s->option_pthread)
tcc_set_options(s, "-lpthread");
}
if (s->do_bench)

1
tcc.h
View File

@ -817,7 +817,6 @@ struct TCCState {
int do_bench; /* option -bench */
int gen_deps; /* option -MD */
char *deps_outfile; /* option -MF */
int option_pthread; /* -pthread option */
int argc;
char **argv;
};