tcc: add unsupported option -pedantic
[tinycc.git] / tcc.c
blob3c70f73c95e1dfbf3190ffd6f08af61172390226
1 /*
2 * TCC - Tiny C Compiler
3 *
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
22 #include "tcc.h"
23 #else
24 #include "libtcc.c"
25 #endif
27 static char **files;
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;
35 static int gen_deps;
36 static const char *deps_outfile;
38 #define TCC_OPTION_HAS_ARG 0x0001
39 #define TCC_OPTION_NOSEP 0x0002 /* cannot have space before option and arg */
41 static void help(void)
43 printf("tcc version " TCC_VERSION " - Tiny C Compiler - Copyright (C) 2001-2006 Fabrice Bellard\n"
44 "Usage: tcc [options...] [-o outfile] [-c] infile(s)...\n"
45 " tcc [options...] -run infile [arguments...]\n"
46 "General options:\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"
61 "Linker options:\n"
62 " -Ldir add library path 'dir'\n"
63 " -llib link with dynamic or static library 'lib'\n"
64 " -pthread link with -lpthread and -D_REENTRANT (POSIX Linux)\n"
65 " -shared generate a shared library\n"
66 " -soname set name for shared library to be used at runtime\n"
67 " -static static linking\n"
68 " -rdynamic export all global symbols to dynamic linker\n"
69 " -r generate (relocatable) object file\n"
70 "Debugger options:\n"
71 " -g generate runtime debug info\n"
72 #ifdef CONFIG_TCC_BCHECK
73 " -b compile with built-in memory and bounds checker (implies -g)\n"
74 #endif
75 #ifdef CONFIG_TCC_BACKTRACE
76 " -bt N show N callers in stack traces\n"
77 #endif
78 "Misc options:\n"
79 " -MD generate target dependencies for make\n"
80 " -MF depfile put generated dependencies here\n"
84 typedef struct TCCOption {
85 const char *name;
86 uint16_t index;
87 uint16_t flags;
88 } TCCOption;
90 enum {
91 TCC_OPTION_HELP,
92 TCC_OPTION_I,
93 TCC_OPTION_D,
94 TCC_OPTION_U,
95 TCC_OPTION_L,
96 TCC_OPTION_B,
97 TCC_OPTION_l,
98 TCC_OPTION_bench,
99 TCC_OPTION_bt,
100 TCC_OPTION_b,
101 TCC_OPTION_g,
102 TCC_OPTION_c,
103 TCC_OPTION_static,
104 TCC_OPTION_shared,
105 TCC_OPTION_soname,
106 TCC_OPTION_o,
107 TCC_OPTION_r,
108 TCC_OPTION_s,
109 TCC_OPTION_Wl,
110 TCC_OPTION_W,
111 TCC_OPTION_O,
112 TCC_OPTION_m,
113 TCC_OPTION_f,
114 TCC_OPTION_nostdinc,
115 TCC_OPTION_nostdlib,
116 TCC_OPTION_print_search_dirs,
117 TCC_OPTION_rdynamic,
118 TCC_OPTION_pedantic,
119 TCC_OPTION_pthread,
120 TCC_OPTION_run,
121 TCC_OPTION_v,
122 TCC_OPTION_w,
123 TCC_OPTION_pipe,
124 TCC_OPTION_E,
125 TCC_OPTION_MD,
126 TCC_OPTION_MF,
127 TCC_OPTION_x,
130 static const TCCOption tcc_options[] = {
131 { "h", TCC_OPTION_HELP, 0 },
132 { "-help", TCC_OPTION_HELP, 0 },
133 { "?", TCC_OPTION_HELP, 0 },
134 { "I", TCC_OPTION_I, TCC_OPTION_HAS_ARG },
135 { "D", TCC_OPTION_D, TCC_OPTION_HAS_ARG },
136 { "U", TCC_OPTION_U, TCC_OPTION_HAS_ARG },
137 { "L", TCC_OPTION_L, TCC_OPTION_HAS_ARG },
138 { "B", TCC_OPTION_B, TCC_OPTION_HAS_ARG },
139 { "l", TCC_OPTION_l, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
140 { "bench", TCC_OPTION_bench, 0 },
141 #ifdef CONFIG_TCC_BACKTRACE
142 { "bt", TCC_OPTION_bt, TCC_OPTION_HAS_ARG },
143 #endif
144 #ifdef CONFIG_TCC_BCHECK
145 { "b", TCC_OPTION_b, 0 },
146 #endif
147 { "g", TCC_OPTION_g, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
148 { "c", TCC_OPTION_c, 0 },
149 { "static", TCC_OPTION_static, 0 },
150 { "shared", TCC_OPTION_shared, 0 },
151 { "soname", TCC_OPTION_soname, TCC_OPTION_HAS_ARG },
152 { "o", TCC_OPTION_o, TCC_OPTION_HAS_ARG },
153 { "pedantic", TCC_OPTION_pedantic, 0},
154 { "pthread", TCC_OPTION_pthread, 0},
155 { "run", TCC_OPTION_run, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
156 { "rdynamic", TCC_OPTION_rdynamic, 0 },
157 { "r", TCC_OPTION_r, 0 },
158 { "s", TCC_OPTION_s, 0 },
159 { "Wl,", TCC_OPTION_Wl, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
160 { "W", TCC_OPTION_W, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
161 { "O", TCC_OPTION_O, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
162 { "m", TCC_OPTION_m, TCC_OPTION_HAS_ARG },
163 { "f", TCC_OPTION_f, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
164 { "nostdinc", TCC_OPTION_nostdinc, 0 },
165 { "nostdlib", TCC_OPTION_nostdlib, 0 },
166 { "print-search-dirs", TCC_OPTION_print_search_dirs, 0 },
167 { "v", TCC_OPTION_v, TCC_OPTION_HAS_ARG | TCC_OPTION_NOSEP },
168 { "w", TCC_OPTION_w, 0 },
169 { "pipe", TCC_OPTION_pipe, 0},
170 { "E", TCC_OPTION_E, 0},
171 { "MD", TCC_OPTION_MD, 0},
172 { "MF", TCC_OPTION_MF, TCC_OPTION_HAS_ARG },
173 { "x", TCC_OPTION_x, TCC_OPTION_HAS_ARG },
174 { NULL },
177 static int64_t getclock_us(void)
179 #ifdef _WIN32
180 struct _timeb tb;
181 _ftime(&tb);
182 return (tb.time * 1000LL + tb.millitm) * 1000LL;
183 #else
184 struct timeval tv;
185 gettimeofday(&tv, NULL);
186 return tv.tv_sec * 1000000LL + tv.tv_usec;
187 #endif
190 /* convert 'str' into an array of space separated strings */
191 static int expand_args(char ***pargv, const char *str)
193 const char *s1;
194 char **argv, *arg;
195 int argc, len;
197 argc = 0;
198 argv = NULL;
199 for(;;) {
200 while (is_space(*str))
201 str++;
202 if (*str == '\0')
203 break;
204 s1 = str;
205 while (*str != '\0' && !is_space(*str))
206 str++;
207 len = str - s1;
208 arg = tcc_malloc(len + 1);
209 memcpy(arg, s1, len);
210 arg[len] = '\0';
211 dynarray_add((void ***)&argv, &argc, arg);
213 *pargv = argv;
214 return argc;
217 #if defined(TCC_TARGET_X86_64) || defined (TCC_TARGET_I386)
219 #ifdef _WIN32
220 #define CAST (const char * const *)
221 #else
222 #define CAST (char * const *)
223 #endif
225 #if defined(TCC_TARGET_X86_64)
226 #define ARG 32
227 #define CHILD "i386"
228 #elif defined (TCC_TARGET_I386)
229 #define ARG 64
230 #define CHILD "x86_64"
231 #endif
233 static char *ssuffix(const char *oldname, const char sep)
235 char *p, *name = tcc_strdup(oldname);
236 p = strchr(name, sep);
237 if (p)
238 return p + 1;
239 /* prefix "win32-" when file extension is present */
240 if (*tcc_fileextension(name)){
241 name = tcc_realloc(name, strlen(oldname + 7));
242 sprintf(name, "win32-%s", oldname);
244 return name;
247 static void exec_other_tcc(TCCState *s, int argc,
248 char **argv,const char *optarg, int optind)
250 char child_path[4096],child_name[4096];
251 char *parent,*child_tcc;
252 int opt = atoi(optarg);
253 if (strlen(argv[0]) > 4000)
254 error("-m%i unsafe path length", ARG);
255 switch (opt) {
256 case ARG + 1: /* oops we called ourselves */
257 error("-m%i cross compiler not installed", ARG);
258 break;
259 case ARG:
261 parent = tcc_basename(argv[0]);
262 child_tcc = ssuffix(parent,'-');
263 sprintf(child_name, CHILD "-%s", child_tcc);
264 tcc_free(child_tcc);
265 if (strcmp(parent, child_name)) {
266 /* child_path = dirname */
267 pstrcpy(child_path, parent - argv[0] + 1, argv[0]);
268 child_tcc = strchr(child_path, 0);
269 strcpy(child_tcc, child_name);
270 if (0 < s->verbose)
271 printf("%s -m%i -> %s\n",
272 parent, ARG, child_path);
273 sprintf(argv[optind],"-m%i", ARG + 1); /* no loop */
274 execvp(child_path, CAST argv);
275 sprintf(child_tcc,"tcc%s",tcc_fileextension(parent));
276 execvp(child_path, CAST argv);
277 error("-m%i cross compiler not found", ARG);
278 } else error("-m%i unsupported configuration", ARG);
280 case 96 ^ ARG : break;
281 case 96 ^ (ARG + 1): break;
282 default:
283 warning("usupported option \"-m%s\"",optarg);
286 #undef CAST
287 #undef ARG
288 #undef CHILD
289 #endif
291 static int parse_args(TCCState *s, int argc, char **argv)
293 int optind;
294 const TCCOption *popt;
295 const char *optarg, *p1, *r1;
296 char *r;
298 optind = 0;
299 while (optind < argc) {
301 r = argv[optind++];
302 if (r[0] != '-' || r[1] == '\0') {
303 /* add a new file */
304 dynarray_add((void ***)&files, &nb_files, r);
305 if (!multiple_files) {
306 optind--;
307 /* argv[0] will be this file */
308 break;
310 } else {
311 /* find option in table (match only the first chars */
312 popt = tcc_options;
313 for(;;) {
314 p1 = popt->name;
315 if (p1 == NULL)
316 error("invalid option -- '%s'", r);
317 r1 = r + 1;
318 for(;;) {
319 if (*p1 == '\0')
320 goto option_found;
321 if (*r1 != *p1)
322 break;
323 p1++;
324 r1++;
326 popt++;
328 option_found:
329 if (popt->flags & TCC_OPTION_HAS_ARG) {
330 if (*r1 != '\0' || (popt->flags & TCC_OPTION_NOSEP)) {
331 optarg = r1;
332 } else {
333 if (optind >= argc)
334 error("argument to '%s' is missing", r);
335 optarg = argv[optind++];
337 } else {
338 if (*r1 != '\0')
339 return 0;
340 optarg = NULL;
343 switch(popt->index) {
344 case TCC_OPTION_HELP:
345 return 0;
347 case TCC_OPTION_I:
348 if (tcc_add_include_path(s, optarg) < 0)
349 error("too many include paths");
350 break;
351 case TCC_OPTION_D:
353 char *sym, *value;
354 sym = (char *)optarg;
355 value = strchr(sym, '=');
356 if (value) {
357 *value = '\0';
358 value++;
360 tcc_define_symbol(s, sym, value);
362 break;
363 case TCC_OPTION_U:
364 tcc_undefine_symbol(s, optarg);
365 break;
366 case TCC_OPTION_L:
367 tcc_add_library_path(s, optarg);
368 break;
369 case TCC_OPTION_B:
370 /* set tcc utilities path (mainly for tcc development) */
371 tcc_set_lib_path(s, optarg);
372 break;
373 case TCC_OPTION_l:
374 dynarray_add((void ***)&files, &nb_files, r);
375 nb_libraries++;
376 break;
377 case TCC_OPTION_pthread:
378 /* fixme: these options could be different on your platform */
379 if(output_type != TCC_OUTPUT_OBJ){
380 dynarray_add((void ***)&files, &nb_files, "-lpthread");
381 nb_libraries++;
383 tcc_define_symbol(s, "_REENTRANT", "1");
384 break;
385 case TCC_OPTION_bench:
386 do_bench = 1;
387 break;
388 #ifdef CONFIG_TCC_BACKTRACE
389 case TCC_OPTION_bt:
390 set_num_callers(atoi(optarg));
391 break;
392 #endif
393 #ifdef CONFIG_TCC_BCHECK
394 case TCC_OPTION_b:
395 s->do_bounds_check = 1;
396 s->do_debug = 1;
397 break;
398 #endif
399 case TCC_OPTION_g:
400 s->do_debug = 1;
401 break;
402 case TCC_OPTION_c:
403 multiple_files = 1;
404 output_type = TCC_OUTPUT_OBJ;
405 break;
406 case TCC_OPTION_static:
407 s->static_link = 1;
408 break;
409 case TCC_OPTION_shared:
410 output_type = TCC_OUTPUT_DLL;
411 break;
412 case TCC_OPTION_soname:
413 s->soname = optarg;
414 break;
415 #if defined(TCC_TARGET_X86_64) || defined (TCC_TARGET_I386)
416 case TCC_OPTION_m:
417 exec_other_tcc(s, argc+1, argv-1, optarg, optind);
418 break;
419 #endif
420 case TCC_OPTION_o:
421 multiple_files = 1;
422 outfile = optarg;
423 break;
424 case TCC_OPTION_r:
425 /* generate a .o merging several output files */
426 reloc_output = 1;
427 output_type = TCC_OUTPUT_OBJ;
428 break;
429 case TCC_OPTION_nostdinc:
430 s->nostdinc = 1;
431 break;
432 case TCC_OPTION_nostdlib:
433 s->nostdlib = 1;
434 break;
435 case TCC_OPTION_print_search_dirs:
436 print_search_dirs = 1;
437 break;
438 case TCC_OPTION_run:
440 int argc1;
441 char **argv1;
442 argc1 = expand_args(&argv1, optarg);
443 if (argc1 > 0) {
444 parse_args(s, argc1, argv1);
446 multiple_files = 0;
447 output_type = TCC_OUTPUT_MEMORY;
449 break;
450 case TCC_OPTION_v:
451 do {
452 if (0 == s->verbose++)
453 printf("tcc version %s\n", TCC_VERSION);
454 } while (*optarg++ == 'v');
455 break;
456 case TCC_OPTION_f:
457 if (tcc_set_flag(s, optarg, 1) < 0 && s->warn_unsupported)
458 goto unsupported_option;
459 break;
460 case TCC_OPTION_W:
461 if (tcc_set_warning(s, optarg, 1) < 0 &&
462 s->warn_unsupported)
463 goto unsupported_option;
464 break;
465 case TCC_OPTION_w:
466 s->warn_none = 1;
467 break;
468 case TCC_OPTION_rdynamic:
469 s->rdynamic = 1;
470 break;
471 case TCC_OPTION_Wl:
473 if ((r = (char *) tcc_set_linker(s, (char *)optarg, TRUE)))
474 error("unsupported linker option '%s'", r);
476 break;
477 case TCC_OPTION_E:
478 output_type = TCC_OUTPUT_PREPROCESS;
479 break;
480 case TCC_OPTION_MD:
481 gen_deps = 1;
482 break;
483 case TCC_OPTION_MF:
484 deps_outfile = optarg;
485 break;
486 case TCC_OPTION_x:
487 break;
488 default:
489 if (s->warn_unsupported) {
490 unsupported_option:
491 warning("unsupported option '%s'", r);
493 break;
497 return optind + 1;
500 int main(int argc, char **argv)
502 int i;
503 TCCState *s;
504 int nb_objfiles, ret, optind;
505 int64_t start_time = 0;
507 s = tcc_new();
509 output_type = TCC_OUTPUT_EXE;
510 outfile = NULL;
511 multiple_files = 1;
512 files = NULL;
513 nb_files = 0;
514 nb_libraries = 0;
515 reloc_output = 0;
516 print_search_dirs = 0;
517 ret = 0;
519 optind = parse_args(s, argc - 1, argv + 1);
520 if (print_search_dirs) {
521 /* enough for Linux kernel */
522 printf("install: %s/\n", s->tcc_lib_path);
523 return 0;
525 if (optind == 0 || nb_files == 0) {
526 if (optind && s->verbose)
527 return 0;
528 help();
529 return 1;
532 nb_objfiles = nb_files - nb_libraries;
534 /* if outfile provided without other options, we output an
535 executable */
536 if (outfile && output_type == TCC_OUTPUT_MEMORY)
537 output_type = TCC_OUTPUT_EXE;
539 /* check -c consistency : only single file handled. XXX: checks file type */
540 if (output_type == TCC_OUTPUT_OBJ && !reloc_output) {
541 /* accepts only a single input file */
542 if (nb_objfiles != 1)
543 error("cannot specify multiple files with -c");
544 if (nb_libraries != 0)
545 error("cannot specify libraries with -c");
549 if (output_type == TCC_OUTPUT_PREPROCESS) {
550 if (!outfile) {
551 s->outfile = stdout;
552 } else {
553 s->outfile = fopen(outfile, "w");
554 if (!s->outfile)
555 error("could not open '%s'", outfile);
559 if (do_bench) {
560 start_time = getclock_us();
563 tcc_set_output_type(s, output_type);
564 s->reloc_output = reloc_output;
566 /* compile or add each files or library */
567 for(i = 0; i < nb_files && ret == 0; i++) {
568 const char *filename;
570 filename = files[i];
571 if (filename[0] == '-' && filename[1] == 'l') {
572 if (tcc_add_library(s, filename + 2) < 0) {
573 error_noabort("cannot find %s", filename);
574 ret = 1;
576 } else {
577 if (1 == s->verbose)
578 printf("-> %s\n", filename);
579 if (tcc_add_file(s, filename) < 0)
580 ret = 1;
584 /* free all files */
585 tcc_free(files);
587 if (0 == ret) {
588 if (do_bench)
589 tcc_print_stats(s, getclock_us() - start_time);
591 if (s->output_type == TCC_OUTPUT_MEMORY)
592 ret = tcc_run(s, argc - optind, argv + optind);
593 else {
594 if (s->output_type == TCC_OUTPUT_PREPROCESS) {
595 if (outfile)
596 fclose(s->outfile);
597 } else {
598 ret = tcc_output_file(s, outfile ? outfile : tcc_default_target(s));
599 ret = ret ? 1 : 0;
602 /* dump collected dependencies */
603 if (gen_deps && !ret)
604 tcc_gen_makedeps(s, outfile, deps_outfile);
608 tcc_delete(s);
610 #ifdef MEM_DEBUG
611 if (do_bench) {
612 printf("memory: %d bytes, max = %d bytes\n", mem_cur_size, mem_max_size);
614 #endif
615 return ret;