mirror of
https://github.com/mirror/tinycc.git
synced 2025-02-28 08:10:25 +08:00
tcc.c: skip -lpthread when -c option specified
This commit is contained in:
parent
0d38e3b663
commit
9e406656c7
6
tcc.c
6
tcc.c
@ -298,8 +298,10 @@ static int parse_args(TCCState *s, int argc, char **argv)
|
||||
break;
|
||||
case TCC_OPTION_pthread:
|
||||
/* fixme: these options could be different on your platform */
|
||||
dynarray_add((void ***)&files, &nb_files, "-lpthread");
|
||||
nb_libraries++;
|
||||
if(output_type != TCC_OUTPUT_OBJ){
|
||||
dynarray_add((void ***)&files, &nb_files, "-lpthread");
|
||||
nb_libraries++;
|
||||
}
|
||||
tcc_define_symbol(s, "_REENTRANT", "1");
|
||||
break;
|
||||
case TCC_OPTION_bench:
|
||||
|
Loading…
Reference in New Issue
Block a user