source: EcnlProtoTool/trunk/tcc-0.9.27/tcc.c@ 331

Last change on this file since 331 was 331, checked in by coas-nagasima, 6 years ago

prototoolに関連するプロジェクトをnewlibからmuslを使うよう変更・更新
ntshellをnewlibの下位の実装から、muslのsyscallの実装に変更・更新
以下のOSSをアップデート
・mruby-1.3.0
・musl-1.1.18
・onigmo-6.1.3
・tcc-0.9.27
以下のOSSを追加
・openssl-1.1.0e
・curl-7.57.0
・zlib-1.2.11
以下のmrbgemsを追加
・iij/mruby-digest
・iij/mruby-env
・iij/mruby-errno
・iij/mruby-iijson
・iij/mruby-ipaddr
・iij/mruby-mock
・iij/mruby-require
・iij/mruby-tls-openssl

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 12.6 KB
Line 
1/*
2 * TCC - Tiny C Compiler
3 *
4 * Copyright (c) 2001-2004 Fabrice Bellard
5 *
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.
10 *
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.
15 *
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
19 */
20
21#include "tcc.h"
22#if ONE_SOURCE
23# include "libtcc.c"
24#endif
25#include "tcctools.c"
26
27static const char help[] =
28 "Tiny C Compiler "TCC_VERSION" - Copyright (C) 2001-2006 Fabrice Bellard\n"
29 "Usage: tcc [options...] [-o outfile] [-c] infile(s)...\n"
30 " tcc [options...] -run infile [arguments...]\n"
31 "General options:\n"
32 " -c compile only - generate an object file\n"
33 " -o outfile set output filename\n"
34 " -run run compiled source\n"
35 " -fflag set or reset (with 'no-' prefix) 'flag' (see tcc -hh)\n"
36 " -Wwarning set or reset (with 'no-' prefix) 'warning' (see tcc -hh)\n"
37 " -w disable all warnings\n"
38 " -v -vv show version, show search paths or loaded files\n"
39 " -h -hh show this, show more help\n"
40 " -bench show compilation statistics\n"
41 " - use stdin pipe as infile\n"
42 " @listfile read arguments from listfile\n"
43 "Preprocessor options:\n"
44 " -Idir add include path 'dir'\n"
45 " -Dsym[=val] define 'sym' with value 'val'\n"
46 " -Usym undefine 'sym'\n"
47 " -E preprocess only\n"
48 "Linker options:\n"
49 " -Ldir add library path 'dir'\n"
50 " -llib link with dynamic or static library 'lib'\n"
51 " -r generate (relocatable) object file\n"
52 " -shared generate a shared library/dll\n"
53 " -rdynamic export all global symbols to dynamic linker\n"
54 " -soname set name for shared library to be used at runtime\n"
55 " -Wl,-opt[=val] set linker option (see tcc -hh)\n"
56 "Debugger options:\n"
57 " -g generate runtime debug info\n"
58#ifdef CONFIG_TCC_BCHECK
59 " -b compile with built-in memory and bounds checker (implies -g)\n"
60#endif
61#ifdef CONFIG_TCC_BACKTRACE
62 " -bt N show N callers in stack traces\n"
63#endif
64 "Misc. options:\n"
65 " -x[c|a|n] specify type of the next infile\n"
66 " -nostdinc do not use standard system include paths\n"
67 " -nostdlib do not link with standard crt and libraries\n"
68 " -Bdir set tcc's private include/library dir\n"
69 " -MD generate dependency file for make\n"
70 " -MF file specify dependency file name\n"
71 " -m32/64 defer to i386/x86_64 cross compiler\n"
72 "Tools:\n"
73 " create library : tcc -ar [rcsv] lib.a files\n"
74#ifdef TCC_TARGET_PE
75 " create def file : tcc -impdef lib.dll [-v] [-o lib.def]\n"
76#endif
77 ;
78
79static const char help2[] =
80 "Tiny C Compiler "TCC_VERSION" - More Options\n"
81 "Special options:\n"
82 " -P -P1 with -E: no/alternative #line output\n"
83 " -dD -dM with -E: output #define directives\n"
84 " -pthread same as -D_REENTRANT and -lpthread\n"
85 " -On same as -D__OPTIMIZE__ for n > 0\n"
86 " -Wp,-opt same as -opt\n"
87 " -include file include 'file' above each input file\n"
88 " -isystem dir add 'dir' to system include path\n"
89 " -static link to static libraries (not recommended)\n"
90 " -dumpversion print version\n"
91 " -print-search-dirs print search paths\n"
92 " -dt with -run/-E: auto-define 'test_...' macros\n"
93 "Ignored options:\n"
94 " --param -pedantic -pipe -s -std -traditional\n"
95 "-W... warnings:\n"
96 " all turn on some (*) warnings\n"
97 " error stop after first warning\n"
98 " unsupported warn about ignored options, pragmas, etc.\n"
99 " write-strings strings are const\n"
100 " implicit-function-declaration warn for missing prototype (*)\n"
101 "-f[no-]... flags:\n"
102 " unsigned-char default char is unsigned\n"
103 " signed-char default char is signed\n"
104 " common use common section instead of bss\n"
105 " leading-underscore decorate extern symbols\n"
106 " ms-extensions allow anonymous struct in struct\n"
107 " dollars-in-identifiers allow '$' in C symbols\n"
108 "-m... target specific options:\n"
109 " ms-bitfields use MSVC bitfield layout\n"
110#ifdef TCC_TARGET_ARM
111 " float-abi hard/softfp on arm\n"
112#endif
113#ifdef TCC_TARGET_X86_64
114 " no-sse disable floats on x86_64\n"
115#endif
116 "-Wl,... linker options:\n"
117 " -nostdlib do not link with standard crt/libs\n"
118 " -[no-]whole-archive load lib(s) fully/only as needed\n"
119 " -export-all-symbols same as -rdynamic\n"
120 " -image-base= -Ttext= set base address of executable\n"
121 " -section-alignment= set section alignment in executable\n"
122#ifdef TCC_TARGET_PE
123 " -file-alignment= set PE file alignment\n"
124 " -stack= set PE stack reserve\n"
125 " -large-address-aware set related PE option\n"
126 " -subsystem=[console/windows] set PE subsystem\n"
127 " -oformat=[pe-* binary] set executable output format\n"
128 "Predefined macros:\n"
129 " tcc -E -dM - < nul\n"
130#else
131 " -rpath= set dynamic library search path\n"
132 " -enable-new-dtags set DT_RUNPATH instead of DT_RPATH\n"
133 " -soname= set DT_SONAME elf tag\n"
134 " -Bsymbolic set DT_SYMBOLIC elf tag\n"
135 " -oformat=[elf32/64-* binary] set executable output format\n"
136 " -init= -fini= -as-needed -O (ignored)\n"
137 "Predefined macros:\n"
138 " tcc -E -dM - < /dev/null\n"
139#endif
140 "See also the manual for more details.\n"
141 ;
142
143static const char version[] =
144 "tcc version "TCC_VERSION" ("
145#ifdef TCC_TARGET_I386
146 "i386"
147#elif defined TCC_TARGET_X86_64
148 "x86_64"
149#elif defined TCC_TARGET_C67
150 "C67"
151#elif defined TCC_TARGET_ARM
152 "ARM"
153#elif defined TCC_TARGET_ARM64
154 "AArch64"
155#endif
156#ifdef TCC_ARM_HARDFLOAT
157 " Hard Float"
158#endif
159#ifdef TCC_TARGET_PE
160 " Windows"
161#elif defined(TCC_TARGET_MACHO)
162 " Darwin"
163#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
164 " FreeBSD"
165#else
166 " Linux"
167#endif
168 ")\n"
169 ;
170
171static void print_dirs(const char *msg, char **paths, int nb_paths)
172{
173 int i;
174 printf("%s:\n%s", msg, nb_paths ? "" : " -\n");
175 for(i = 0; i < nb_paths; i++)
176 printf(" %s\n", paths[i]);
177}
178
179static void print_search_dirs(TCCState *s)
180{
181 printf("install: %s\n", s->tcc_lib_path);
182 /* print_dirs("programs", NULL, 0); */
183 print_dirs("include", s->sysinclude_paths, s->nb_sysinclude_paths);
184 print_dirs("libraries", s->library_paths, s->nb_library_paths);
185 printf("libtcc1:\n %s/"TCC_LIBTCC1"\n", s->tcc_lib_path);
186#ifndef TCC_TARGET_PE
187 print_dirs("crt", s->crt_paths, s->nb_crt_paths);
188 printf("elfinterp:\n %s\n", DEFAULT_ELFINTERP(s));
189#endif
190}
191
192static void set_environment(TCCState *s)
193{
194 char * path;
195
196 path = getenv("C_INCLUDE_PATH");
197 if(path != NULL) {
198 tcc_add_sysinclude_path(s, path);
199 }
200 path = getenv("CPATH");
201 if(path != NULL) {
202 tcc_add_include_path(s, path);
203 }
204 path = getenv("LIBRARY_PATH");
205 if(path != NULL) {
206 tcc_add_library_path(s, path);
207 }
208}
209
210static char *default_outputfile(TCCState *s, const char *first_file)
211{
212 char buf[1024];
213 char *ext;
214 const char *name = "a";
215
216 if (first_file && strcmp(first_file, "-"))
217 name = tcc_basename(first_file);
218 snprintf(buf, sizeof(buf), "%s", name);
219 ext = tcc_fileextension(buf);
220#ifdef TCC_TARGET_PE
221 if (s->output_type == TCC_OUTPUT_DLL)
222 strcpy(ext, ".dll");
223 else
224 if (s->output_type == TCC_OUTPUT_EXE)
225 strcpy(ext, ".exe");
226 else
227#endif
228 if (s->output_type == TCC_OUTPUT_OBJ && !s->option_r && *ext)
229 strcpy(ext, ".o");
230 else
231 strcpy(buf, "a.out");
232 return tcc_strdup(buf);
233}
234
235static unsigned getclock_ms(void)
236{
237#ifdef _WIN32
238 return GetTickCount();
239#else
240 struct timeval tv;
241 gettimeofday(&tv, NULL);
242 return tv.tv_sec*1000 + (tv.tv_usec+500)/1000;
243#endif
244}
245
246int tcc_main(int argc0, char **argv0)
247{
248 TCCState *s;
249 int ret, opt, n = 0, t = 0;
250 unsigned start_time = 0;
251 const char *first_file;
252 int argc; char **argv;
253 FILE *ppfp = stdout;
254
255redo:
256 argc = argc0, argv = argv0;
257 s = tcc_new();
258 opt = tcc_parse_args(s, &argc, &argv, 1);
259
260 if ((n | t) == 0) {
261 if (opt == OPT_HELP)
262 return printf(help), 1;
263 if (opt == OPT_HELP2)
264 return printf(help2), 1;
265 if (opt == OPT_M32 || opt == OPT_M64)
266 tcc_tool_cross(s, argv, opt); /* never returns */
267 if (s->verbose)
268 printf(version);
269 if (opt == OPT_AR)
270 return tcc_tool_ar(s, argc, argv);
271#ifdef TCC_TARGET_PE
272 if (opt == OPT_IMPDEF)
273 return tcc_tool_impdef(s, argc, argv);
274#endif
275 if (opt == OPT_V)
276 return 0;
277 if (opt == OPT_PRINT_DIRS) {
278 /* initialize search dirs */
279 set_environment(s);
280 tcc_set_output_type(s, TCC_OUTPUT_MEMORY);
281 print_search_dirs(s);
282 return 0;
283 }
284
285 n = s->nb_files;
286 if (n == 0)
287 tcc_error("no input files\n");
288
289 if (s->output_type == TCC_OUTPUT_PREPROCESS) {
290 if (s->outfile) {
291 ppfp = fopen(s->outfile, "w");
292 if (!ppfp)
293 tcc_error("could not write '%s'", s->outfile);
294 }
295 } else if (s->output_type == TCC_OUTPUT_OBJ && !s->option_r) {
296 if (s->nb_libraries)
297 tcc_error("cannot specify libraries with -c");
298 if (n > 1 && s->outfile)
299 tcc_error("cannot specify output file with -c many files");
300 } else {
301 if (s->option_pthread)
302 tcc_set_options(s, "-lpthread");
303 }
304
305 if (s->do_bench)
306 start_time = getclock_ms();
307 }
308
309 set_environment(s);
310 if (s->output_type == 0)
311 s->output_type = TCC_OUTPUT_EXE;
312 tcc_set_output_type(s, s->output_type);
313 s->ppfp = ppfp;
314
315 if ((s->output_type == TCC_OUTPUT_MEMORY
316 || s->output_type == TCC_OUTPUT_PREPROCESS) && (s->dflag & 16))
317 s->dflag |= t ? 32 : 0, s->run_test = ++t, n = s->nb_files;
318
319 /* compile or add each files or library */
320 for (first_file = NULL, ret = 0;;) {
321 struct filespec *f = s->files[s->nb_files - n];
322 s->filetype = f->type;
323 s->alacarte_link = f->alacarte;
324 if (f->type == AFF_TYPE_LIB) {
325 if (tcc_add_library_err(s, f->name) < 0)
326 ret = 1;
327 } else {
328 if (1 == s->verbose)
329 printf("-> %s\n", f->name);
330 if (!first_file)
331 first_file = f->name;
332 if (tcc_add_file(s, f->name) < 0)
333 ret = 1;
334 }
335 s->filetype = 0;
336 s->alacarte_link = 1;
337 if (--n == 0 || ret
338 || (s->output_type == TCC_OUTPUT_OBJ && !s->option_r))
339 break;
340 }
341
342 if (s->run_test) {
343 t = 0;
344 } else if (s->output_type == TCC_OUTPUT_PREPROCESS) {
345 ;
346 } else if (0 == ret) {
347 if (s->output_type == TCC_OUTPUT_MEMORY) {
348#ifdef TCC_IS_NATIVE
349 ret = tcc_run(s, argc, argv);
350#endif
351 } else {
352 if (!s->outfile)
353 s->outfile = default_outputfile(s, first_file);
354 if (tcc_output_file(s, s->outfile))
355 ret = 1;
356 else if (s->gen_deps)
357 gen_makedeps(s, s->outfile, s->deps_outfile);
358 }
359 }
360
361 if (s->do_bench && (n | t | ret) == 0)
362 tcc_print_stats(s, getclock_ms() - start_time);
363 tcc_delete(s);
364 if (ret == 0 && n)
365 goto redo; /* compile more files with -c */
366 if (t)
367 goto redo; /* run more tests with -dt -run */
368 if (ppfp && ppfp != stdout)
369 fclose(ppfp);
370 return ret;
371}
Note: See TracBrowser for help on using the repository browser.