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
27 static void print_paths(const char *msg
, char **paths
, int nb_paths
)
30 printf("%s:\n%s", msg
, nb_paths
? "" : " -\n");
31 for(i
= 0; i
< nb_paths
; i
++)
32 printf(" %s\n", paths
[i
]);
35 static void display_info(TCCState
*s
, int what
)
39 printf("tcc version %s ("
40 #ifdef TCC_TARGET_I386
42 #elif defined TCC_TARGET_X86_64
44 #elif defined TCC_TARGET_C67
46 #elif defined TCC_TARGET_ARM
48 # ifdef TCC_ARM_HARDFLOAT
51 #elif defined TCC_TARGET_ARM64
53 # ifdef TCC_ARM_HARDFLOAT
65 printf("install: %s\n", s
->tcc_lib_path
);
66 /* print_paths("programs", NULL, 0); */
67 print_paths("include", s
->sysinclude_paths
, s
->nb_sysinclude_paths
);
68 print_paths("libraries", s
->library_paths
, s
->nb_library_paths
);
70 print_paths("crt", s
->crt_paths
, s
->nb_crt_paths
);
71 printf("elfinterp:\n %s\n", DEFAULT_ELFINTERP(s
));
77 static void help(void)
79 printf("Tiny C Compiler "TCC_VERSION
" - Copyright (C) 2001-2006 Fabrice Bellard\n"
80 "Usage: tcc [options...] [-o outfile] [-c] infile(s)...\n"
81 " tcc [options...] -run infile [arguments...]\n"
83 " -c compile only - generate an object file\n"
84 " -o outfile set output filename\n"
85 " -run run compiled source\n"
86 " -fflag set or reset (with 'no-' prefix) 'flag' (see man page)\n"
87 " -Wwarning set or reset (with 'no-' prefix) 'warning' (see man page)\n"
88 " -w disable all warnings\n"
90 " -vv show included files (as sole argument: show search paths)\n"
92 " -bench show compilation statistics\n"
93 " -xc -xa specify type of the next infile\n"
94 " - use stdin pipe as infile\n"
95 " @listfile read arguments from listfile\n"
96 "Preprocessor options:\n"
97 " -Idir add include path 'dir'\n"
98 " -Dsym[=val] define 'sym' with value 'val'\n"
99 " -Usym undefine 'sym'\n"
100 " -E preprocess only\n"
101 " -P[1] no / alternative #line output with -E\n"
102 " -dD -dM output #define directives with -E\n"
104 " -Ldir add library path 'dir'\n"
105 " -llib link with dynamic or static library 'lib'\n"
106 " -pthread link with -lpthread and -D_REENTRANT (POSIX Linux)\n"
107 " -r generate (relocatable) object file\n"
108 " -rdynamic export all global symbols to dynamic linker\n"
109 " -shared generate a shared library\n"
110 " -soname set name for shared library to be used at runtime\n"
111 " -static static linking\n"
112 " -Wl,-opt[=val] set linker option (see manual)\n"
113 "Debugger options:\n"
114 " -g generate runtime debug info\n"
115 #ifdef CONFIG_TCC_BCHECK
116 " -b compile with built-in memory and bounds checker (implies -g)\n"
118 #ifdef CONFIG_TCC_BACKTRACE
119 " -bt N show N callers in stack traces\n"
122 " -nostdinc do not use standard system include paths\n"
123 " -nostdlib do not link with standard crt and libraries\n"
124 " -Bdir use 'dir' as tcc internal library and include path\n"
125 " -MD generate target dependencies for make\n"
126 " -MF depfile put generated dependencies here\n"
130 /* re-execute the i386/x86_64 cross-compilers with tcc -m32/-m64: */
131 #if defined TCC_TARGET_I386 || defined TCC_TARGET_X86_64
134 static int execvp_win32(const char *prog
, char **argv
)
136 int ret
= _spawnvp(P_NOWAIT
, prog
, (const char *const*)argv
);
139 cwait(&ret
, ret
, WAIT_CHILD
);
142 #define execvp execvp_win32
144 static void exec_other_tcc(TCCState
*s
, char **argv
, const char *optarg
)
146 char child_path
[4096], *child_name
; const char *target
;
147 switch (atoi(optarg
)) {
148 #ifdef TCC_TARGET_I386
150 case 64: target
= "x86_64";
153 case 32: target
= "i386";
155 pstrcpy(child_path
, sizeof child_path
- 40, argv
[0]);
156 child_name
= tcc_basename(child_path
);
157 strcpy(child_name
, target
);
159 strcat(child_name
, "-win32");
161 strcat(child_name
, "-tcc");
162 if (strcmp(argv
[0], child_path
)) {
164 printf("tcc: using '%s'\n", child_name
), fflush(stdout
);
165 execvp(argv
[0] = child_path
, argv
);
167 tcc_error("'%s' not found", child_name
);
168 case 0: /* ignore -march etc. */
171 tcc_warning("unsupported option \"-m%s\"", optarg
);
175 #define exec_other_tcc(s, argv, optarg)
178 static void gen_makedeps(TCCState
*s
, const char *target
, const char *filename
)
181 char buf
[1024], *ext
;
185 /* compute filename automatically
186 * dir/file.o -> dir/file.d */
187 pstrcpy(buf
, sizeof(buf
), target
);
188 ext
= tcc_fileextension(buf
);
189 pstrcpy(ext
, sizeof(buf
) - (ext
-buf
), ".d");
194 printf("<- %s\n", filename
);
196 /* XXX return err codes instead of error() ? */
197 depout
= fopen(filename
, "w");
199 tcc_error("could not open '%s'", filename
);
201 fprintf(depout
, "%s : \\\n", target
);
202 for (i
=0; i
<s
->nb_target_deps
; ++i
)
203 fprintf(depout
, " %s \\\n", s
->target_deps
[i
]);
204 fprintf(depout
, "\n");
208 static char *default_outputfile(TCCState
*s
, const char *first_file
)
212 const char *name
= "a";
214 if (first_file
&& strcmp(first_file
, "-"))
215 name
= tcc_basename(first_file
);
216 pstrcpy(buf
, sizeof(buf
), name
);
217 ext
= tcc_fileextension(buf
);
219 if (s
->output_type
== TCC_OUTPUT_DLL
)
222 if (s
->output_type
== TCC_OUTPUT_EXE
)
226 if (s
->output_type
== TCC_OUTPUT_OBJ
&& !s
->option_r
&& *ext
)
229 strcpy(buf
, "a.out");
231 return tcc_strdup(buf
);
234 static int64_t getclock_us(void)
237 LARGE_INTEGER frequency
, t1
;
238 QueryPerformanceFrequency(&frequency
);
239 QueryPerformanceCounter(&t1
);
240 return t1
.QuadPart
* 1000000LL / frequency
.QuadPart
;
243 gettimeofday(&tv
, NULL
);
244 return tv
.tv_sec
* 1000000LL + tv
.tv_usec
;
248 int main(int argc
, char **argv
)
252 int64_t start_time
= 0;
253 const char *first_file
= NULL
;
257 optind
= tcc_parse_args(s
, argc
- 1, argv
+ 1);
259 tcc_set_environment(s
);
267 exec_other_tcc(s
, argv
, s
->option_m
);
272 if (s
->nb_files
== 0) {
274 if (s
->print_search_dirs
|| s
->verbose
== 2) {
275 tcc_set_output_type(s
, TCC_OUTPUT_MEMORY
);
282 tcc_error("no input files\n");
285 /* check -c consistency : only single file handled. XXX: checks file type */
286 if (s
->output_type
== TCC_OUTPUT_OBJ
&& !s
->option_r
) {
287 if (s
->nb_libraries
!= 0)
288 tcc_error("cannot specify libraries with -c");
289 /* accepts only a single input file */
290 if (s
->nb_files
!= 1)
291 tcc_error("cannot specify multiple files with -c");
294 if (s
->output_type
== 0)
295 s
->output_type
= TCC_OUTPUT_EXE
;
296 tcc_set_output_type(s
, s
->output_type
);
298 if (s
->output_type
== TCC_OUTPUT_PREPROCESS
) {
302 s
->ppfp
= fopen(s
->outfile
, "w");
304 tcc_error("could not write '%s'", s
->outfile
);
306 } else if (s
->output_type
!= TCC_OUTPUT_OBJ
) {
307 if (s
->option_pthread
)
308 tcc_set_options(s
, "-lpthread");
312 start_time
= getclock_us();
314 /* compile or add each files or library */
315 for(i
= ret
= 0; i
< s
->nb_files
&& ret
== 0; i
++) {
316 struct filespec
*f
= s
->files
[i
];
317 if (f
->type
>= AFF_TYPE_LIB
) {
318 s
->alacarte_link
= f
->type
== AFF_TYPE_LIB
;
319 if (tcc_add_library_err(s
, f
->name
) < 0)
323 printf("-> %s\n", f
->name
);
324 s
->filetype
= f
->type
;
325 if (tcc_add_file(s
, f
->name
) < 0)
328 first_file
= f
->name
;
330 s
->filetype
= AFF_TYPE_NONE
;
331 s
->alacarte_link
= 1;
336 tcc_print_stats(s
, getclock_us() - start_time
);
337 if (s
->output_type
== TCC_OUTPUT_MEMORY
) {
339 ret
= tcc_run(s
, argc
- 1 - optind
, argv
+ 1 + optind
);
343 s
->outfile
= default_outputfile(s
, first_file
);
344 ret
= !!tcc_output_file(s
, s
->outfile
);
345 if (s
->gen_deps
&& !ret
)
346 gen_makedeps(s
, s
->outfile
, s
->deps_outfile
);