2 * TCC - Tiny C Compiler
4 * Copyright (c) 2001-2004 Fabrice Bellard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #if defined NOTALLINONE || defined TCC_USE_LIBTCC
28 static int nb_files
, nb_libraries
;
29 static int multiple_files
;
30 static int print_search_dirs
;
31 static int output_type
;
32 static int reloc_output
;
33 static const char *outfile
;
34 static int do_bench
= 0;
36 #define TCC_OPTION_HAS_ARG 0x0001
37 #define TCC_OPTION_NOSEP 0x0002 /* cannot have space before option and arg */
39 static void help(void)
41 printf("tcc version " TCC_VERSION
" - Tiny C Compiler - Copyright (C) 2001-2006 Fabrice Bellard\n"
42 "usage: tcc [-v] [-c] [-o outfile] [-Bdir] [-bench] [-Idir] [-Dsym[=val]] [-Usym]\n"
43 " [-Wwarn] [-g] [-b] [-bt N] [-Ldir] [-llib] [-shared] [-soname name]\n"
44 " [-static] [infile1 infile2...] [-run infile args...]\n"
47 " -v display current version, increase verbosity\n"
48 " -c compile only - generate an object file\n"
49 " -o outfile set output filename\n"
50 " -Bdir set tcc internal library path\n"
51 " -bench output compilation statistics\n"
52 " -run run compiled source\n"
53 " -fflag set or reset (with 'no-' prefix) 'flag' (see man page)\n"
54 " -Wwarning set or reset (with 'no-' prefix) 'warning' (see man page)\n"
55 " -w disable all warnings\n"
56 "Preprocessor options:\n"
57 " -E preprocess only\n"
58 " -Idir add include path 'dir'\n"
59 " -Dsym[=val] define 'sym' with value 'val'\n"
60 " -Usym undefine 'sym'\n"
62 " -Ldir add library path 'dir'\n"
63 " -llib link with dynamic or static library 'lib'\n"
64 " -shared generate a shared library\n"
65 " -soname set name for shared library to be used at runtime\n"
66 " -static static linking\n"
67 " -rdynamic export all global symbols to dynamic linker\n"
68 " -r generate (relocatable) object file\n"
70 " -g generate runtime debug info\n"
71 #ifdef CONFIG_TCC_BCHECK
72 " -b compile with built-in memory and bounds checker (implies -g)\n"
74 #ifdef CONFIG_TCC_BACKTRACE
75 " -bt N show N callers in stack traces\n"
80 typedef struct TCCOption
{
111 TCC_OPTION_print_search_dirs
,
121 static const TCCOption tcc_options
[] = {
122 { "h", TCC_OPTION_HELP
, 0 },
123 { "-help", TCC_OPTION_HELP
, 0 },
124 { "?", TCC_OPTION_HELP
, 0 },
125 { "I", TCC_OPTION_I
, TCC_OPTION_HAS_ARG
},
126 { "D", TCC_OPTION_D
, TCC_OPTION_HAS_ARG
},
127 { "U", TCC_OPTION_U
, TCC_OPTION_HAS_ARG
},
128 { "L", TCC_OPTION_L
, TCC_OPTION_HAS_ARG
},
129 { "B", TCC_OPTION_B
, TCC_OPTION_HAS_ARG
},
130 { "l", TCC_OPTION_l
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
131 { "bench", TCC_OPTION_bench
, 0 },
132 { "bt", TCC_OPTION_bt
, TCC_OPTION_HAS_ARG
},
133 #ifdef CONFIG_TCC_BCHECK
134 { "b", TCC_OPTION_b
, 0 },
136 { "g", TCC_OPTION_g
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
137 { "c", TCC_OPTION_c
, 0 },
138 { "static", TCC_OPTION_static
, 0 },
139 { "shared", TCC_OPTION_shared
, 0 },
140 { "soname", TCC_OPTION_soname
, TCC_OPTION_HAS_ARG
},
141 { "o", TCC_OPTION_o
, TCC_OPTION_HAS_ARG
},
142 { "run", TCC_OPTION_run
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
143 { "rdynamic", TCC_OPTION_rdynamic
, 0 },
144 { "r", TCC_OPTION_r
, 0 },
145 { "Wl,", TCC_OPTION_Wl
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
146 { "W", TCC_OPTION_W
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
147 { "O", TCC_OPTION_O
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
148 { "m", TCC_OPTION_m
, TCC_OPTION_HAS_ARG
},
149 { "f", TCC_OPTION_f
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
150 { "nostdinc", TCC_OPTION_nostdinc
, 0 },
151 { "nostdlib", TCC_OPTION_nostdlib
, 0 },
152 { "print-search-dirs", TCC_OPTION_print_search_dirs
, 0 },
153 { "v", TCC_OPTION_v
, TCC_OPTION_HAS_ARG
| TCC_OPTION_NOSEP
},
154 { "w", TCC_OPTION_w
, 0 },
155 { "pipe", TCC_OPTION_pipe
, 0},
156 { "E", TCC_OPTION_E
, 0},
157 { "x", TCC_OPTION_x
, TCC_OPTION_HAS_ARG
},
161 static int64_t getclock_us(void)
166 return (tb
.time
* 1000LL + tb
.millitm
) * 1000LL;
169 gettimeofday(&tv
, NULL
);
170 return tv
.tv_sec
* 1000000LL + tv
.tv_usec
;
174 /* convert 'str' into an array of space separated strings */
175 static int expand_args(char ***pargv
, const char *str
)
184 while (is_space(*str
))
189 while (*str
!= '\0' && !is_space(*str
))
192 arg
= tcc_malloc(len
+ 1);
193 memcpy(arg
, s1
, len
);
195 dynarray_add((void ***)&argv
, &argc
, arg
);
201 static int parse_args(TCCState
*s
, int argc
, char **argv
)
204 const TCCOption
*popt
;
205 const char *optarg
, *p1
, *r1
;
209 while (optind
< argc
) {
212 if (r
[0] != '-' || r
[1] == '\0') {
214 dynarray_add((void ***)&files
, &nb_files
, r
);
215 if (!multiple_files
) {
217 /* argv[0] will be this file */
221 /* find option in table (match only the first chars */
226 error("invalid option -- '%s'", r
);
239 if (popt
->flags
& TCC_OPTION_HAS_ARG
) {
240 if (*r1
!= '\0' || (popt
->flags
& TCC_OPTION_NOSEP
)) {
244 error("argument to '%s' is missing", r
);
245 optarg
= argv
[optind
++];
253 switch(popt
->index
) {
254 case TCC_OPTION_HELP
:
258 if (tcc_add_include_path(s
, optarg
) < 0)
259 error("too many include paths");
264 sym
= (char *)optarg
;
265 value
= strchr(sym
, '=');
270 tcc_define_symbol(s
, sym
, value
);
274 tcc_undefine_symbol(s
, optarg
);
277 tcc_add_library_path(s
, optarg
);
280 /* set tcc utilities path (mainly for tcc development) */
281 tcc_set_lib_path(s
, optarg
);
284 dynarray_add((void ***)&files
, &nb_files
, r
);
287 case TCC_OPTION_bench
:
290 #ifdef CONFIG_TCC_BACKTRACE
292 set_num_callers(atoi(optarg
));
295 #ifdef CONFIG_TCC_BCHECK
297 s
->do_bounds_check
= 1;
306 output_type
= TCC_OUTPUT_OBJ
;
308 case TCC_OPTION_static
:
311 case TCC_OPTION_shared
:
312 output_type
= TCC_OUTPUT_DLL
;
314 case TCC_OPTION_soname
:
322 /* generate a .o merging several output files */
324 output_type
= TCC_OUTPUT_OBJ
;
326 case TCC_OPTION_nostdinc
:
329 case TCC_OPTION_nostdlib
:
332 case TCC_OPTION_print_search_dirs
:
333 print_search_dirs
= 1;
339 argc1
= expand_args(&argv1
, optarg
);
341 parse_args(s
, argc1
, argv1
);
344 output_type
= TCC_OUTPUT_MEMORY
;
349 if (0 == s
->verbose
++)
350 printf("tcc version %s\n", TCC_VERSION
);
351 } while (*optarg
++ == 'v');
354 if (tcc_set_flag(s
, optarg
, 1) < 0 && s
->warn_unsupported
)
355 goto unsupported_option
;
358 if (tcc_set_warning(s
, optarg
, 1) < 0 &&
360 goto unsupported_option
;
365 case TCC_OPTION_rdynamic
:
370 if ((r
= (char *) tcc_set_linker(s
, (char *)optarg
, TRUE
)))
371 error("unsupported linker option '%s'", r
);
375 output_type
= TCC_OUTPUT_PREPROCESS
;
380 if (s
->warn_unsupported
) {
382 warning("unsupported option '%s'", r
);
391 int main(int argc
, char **argv
)
395 int nb_objfiles
, ret
, optind
;
396 char objfilename
[1024];
397 int64_t start_time
= 0;
401 output_type
= TCC_OUTPUT_EXE
;
408 print_search_dirs
= 0;
411 optind
= parse_args(s
, argc
- 1, argv
+ 1);
412 if (print_search_dirs
) {
413 /* enough for Linux kernel */
414 printf("install: %s/\n", s
->tcc_lib_path
);
417 if (optind
== 0 || nb_files
== 0) {
418 if (optind
&& s
->verbose
)
424 nb_objfiles
= nb_files
- nb_libraries
;
426 /* if outfile provided without other options, we output an
428 if (outfile
&& output_type
== TCC_OUTPUT_MEMORY
)
429 output_type
= TCC_OUTPUT_EXE
;
431 /* check -c consistency : only single file handled. XXX: checks file type */
432 if (output_type
== TCC_OUTPUT_OBJ
&& !reloc_output
) {
433 /* accepts only a single input file */
434 if (nb_objfiles
!= 1)
435 error("cannot specify multiple files with -c");
436 if (nb_libraries
!= 0)
437 error("cannot specify libraries with -c");
441 if (output_type
== TCC_OUTPUT_PREPROCESS
) {
445 s
->outfile
= fopen(outfile
, "w");
447 error("could not open '%s", outfile
);
449 } else if (output_type
!= TCC_OUTPUT_MEMORY
) {
451 /* compute default outfile name */
454 strcmp(files
[0], "-") == 0 ? "a" : tcc_basename(files
[0]);
455 pstrcpy(objfilename
, sizeof(objfilename
), name
);
456 ext
= tcc_fileextension(objfilename
);
458 if (output_type
== TCC_OUTPUT_DLL
)
461 if (output_type
== TCC_OUTPUT_EXE
)
465 if (output_type
== TCC_OUTPUT_OBJ
&& !reloc_output
&& *ext
)
468 pstrcpy(objfilename
, sizeof(objfilename
), "a.out");
469 outfile
= objfilename
;
474 start_time
= getclock_us();
477 tcc_set_output_type(s
, output_type
);
479 /* compile or add each files or library */
480 for(i
= 0; i
< nb_files
&& ret
== 0; i
++) {
481 const char *filename
;
484 if (filename
[0] == '-' && filename
[1]) {
485 if (tcc_add_library(s
, filename
+ 2) < 0) {
486 error_noabort("cannot find %s", filename
);
491 printf("-> %s\n", filename
);
492 if (tcc_add_file(s
, filename
) < 0)
502 tcc_print_stats(s
, getclock_us() - start_time
);
504 if (s
->output_type
== TCC_OUTPUT_PREPROCESS
) {
507 } else if (s
->output_type
== TCC_OUTPUT_MEMORY
)
508 ret
= tcc_run(s
, argc
- optind
, argv
+ optind
);
510 ret
= tcc_output_file(s
, outfile
) ? 1 : 0;
517 printf("memory: %d bytes, max = %d bytes\n", mem_cur_size
, mem_max_size
);