2001-11-01 17:48:10 +03:00
|
|
|
/*
|
|
|
|
* TCC - Tiny C Compiler
|
2015-07-29 23:53:57 +03:00
|
|
|
*
|
2004-10-28 01:38:03 +04:00
|
|
|
* Copyright (c) 2001-2004 Fabrice Bellard
|
2001-11-01 17:48:10 +03:00
|
|
|
*
|
2003-05-24 18:11:17 +04:00
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
2001-11-01 17:48:10 +03:00
|
|
|
*
|
2003-05-24 18:11:17 +04:00
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
2001-11-01 17:48:10 +03:00
|
|
|
*
|
2003-05-24 18:11:17 +04:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
2001-11-01 17:48:10 +03:00
|
|
|
*/
|
2003-04-13 23:49:30 +04:00
|
|
|
|
2011-07-14 20:45:37 +04:00
|
|
|
#ifdef ONE_SOURCE
|
2009-05-05 22:18:53 +04:00
|
|
|
#include "libtcc.c"
|
2011-07-14 20:45:37 +04:00
|
|
|
#else
|
|
|
|
#include "tcc.h"
|
2009-07-19 00:08:01 +04:00
|
|
|
#endif
|
2017-02-18 11:55:34 +03:00
|
|
|
#include "tcctools.c"
|
2015-03-03 16:08:33 +03:00
|
|
|
|
tccpp: fix issues, add tests
* fix some macro expansion issues
* add some pp tests in tests/pp
* improved tcc -E output for better diff'ability
* remove -dD feature (quirky code, exotic feature,
didn't work well)
Based partially on ideas / researches from PipCet
Some issues remain with VA_ARGS macros (if used in a
rather tricky way).
Also, to keep it simple, the pp doesn't automtically
add any extra spaces to separate tokens which otherwise
would form wrong tokens if re-read from tcc -E output
(such as '+' '=') GCC does that, other compilers don't.
* cleanups
- #line 01 "file" / # 01 "file" processing
- #pragma comment(lib,"foo")
- tcc -E: forward some pragmas to output (pack, comment(lib))
- fix macro parameter list parsing mess from
a3fc54345949535524d01319e1ca6378b7c2c201
a715d7143d9d17da17e67fec6af1c01409a71a31
(some coffee might help, next time ;)
- introduce TOK_PPSTR - to have character constants as
written in the file (similar to TOK_PPNUM)
- allow '\' appear in macros
- new functions begin/end_macro to:
- fix switching macro levels during expansion
- allow unget_tok to unget more than one tok
- slight speedup by using bitflags in isidnum_table
Also:
- x86_64.c : fix decl after statements
- i386-gen,c : fix a vstack leak with VLA on windows
- configure/Makefile : build on windows (MSYS) was broken
- tcc_warning: fflush stderr to keep output order (win32)
2015-05-09 15:29:39 +03:00
|
|
|
static void help(void)
|
2002-05-14 03:00:17 +04:00
|
|
|
{
|
tccpp: fix issues, add tests
* fix some macro expansion issues
* add some pp tests in tests/pp
* improved tcc -E output for better diff'ability
* remove -dD feature (quirky code, exotic feature,
didn't work well)
Based partially on ideas / researches from PipCet
Some issues remain with VA_ARGS macros (if used in a
rather tricky way).
Also, to keep it simple, the pp doesn't automtically
add any extra spaces to separate tokens which otherwise
would form wrong tokens if re-read from tcc -E output
(such as '+' '=') GCC does that, other compilers don't.
* cleanups
- #line 01 "file" / # 01 "file" processing
- #pragma comment(lib,"foo")
- tcc -E: forward some pragmas to output (pack, comment(lib))
- fix macro parameter list parsing mess from
a3fc54345949535524d01319e1ca6378b7c2c201
a715d7143d9d17da17e67fec6af1c01409a71a31
(some coffee might help, next time ;)
- introduce TOK_PPSTR - to have character constants as
written in the file (similar to TOK_PPNUM)
- allow '\' appear in macros
- new functions begin/end_macro to:
- fix switching macro levels during expansion
- allow unget_tok to unget more than one tok
- slight speedup by using bitflags in isidnum_table
Also:
- x86_64.c : fix decl after statements
- i386-gen,c : fix a vstack leak with VLA on windows
- configure/Makefile : build on windows (MSYS) was broken
- tcc_warning: fflush stderr to keep output order (win32)
2015-05-09 15:29:39 +03:00
|
|
|
printf("Tiny C Compiler "TCC_VERSION" - Copyright (C) 2001-2006 Fabrice Bellard\n"
|
2010-09-08 21:13:36 +04:00
|
|
|
"Usage: tcc [options...] [-o outfile] [-c] infile(s)...\n"
|
|
|
|
" tcc [options...] -run infile [arguments...]\n"
|
2002-07-16 02:17:02 +04:00
|
|
|
"General options:\n"
|
|
|
|
" -c compile only - generate an object file\n"
|
2002-07-25 02:10:59 +04:00
|
|
|
" -o outfile set output filename\n"
|
2007-11-14 20:34:30 +03:00
|
|
|
" -run run compiled source\n"
|
2003-10-18 00:43:47 +04:00
|
|
|
" -fflag set or reset (with 'no-' prefix) 'flag' (see man page)\n"
|
|
|
|
" -Wwarning set or reset (with 'no-' prefix) 'warning' (see man page)\n"
|
2003-09-20 00:35:50 +04:00
|
|
|
" -w disable all warnings\n"
|
2013-02-10 23:39:05 +04:00
|
|
|
" -v show version\n"
|
2017-02-18 11:55:34 +03:00
|
|
|
" -vv show included files (as sole argument show search paths)\n"
|
|
|
|
" -h show this help\n"
|
2013-02-10 23:39:05 +04:00
|
|
|
" -bench show compilation statistics\n"
|
2002-07-16 02:17:02 +04:00
|
|
|
"Preprocessor options:\n"
|
|
|
|
" -Idir add include path 'dir'\n"
|
|
|
|
" -Dsym[=val] define 'sym' with value 'val'\n"
|
|
|
|
" -Usym undefine 'sym'\n"
|
tccpp: fix issues, add tests
* fix some macro expansion issues
* add some pp tests in tests/pp
* improved tcc -E output for better diff'ability
* remove -dD feature (quirky code, exotic feature,
didn't work well)
Based partially on ideas / researches from PipCet
Some issues remain with VA_ARGS macros (if used in a
rather tricky way).
Also, to keep it simple, the pp doesn't automtically
add any extra spaces to separate tokens which otherwise
would form wrong tokens if re-read from tcc -E output
(such as '+' '=') GCC does that, other compilers don't.
* cleanups
- #line 01 "file" / # 01 "file" processing
- #pragma comment(lib,"foo")
- tcc -E: forward some pragmas to output (pack, comment(lib))
- fix macro parameter list parsing mess from
a3fc54345949535524d01319e1ca6378b7c2c201
a715d7143d9d17da17e67fec6af1c01409a71a31
(some coffee might help, next time ;)
- introduce TOK_PPSTR - to have character constants as
written in the file (similar to TOK_PPNUM)
- allow '\' appear in macros
- new functions begin/end_macro to:
- fix switching macro levels during expansion
- allow unget_tok to unget more than one tok
- slight speedup by using bitflags in isidnum_table
Also:
- x86_64.c : fix decl after statements
- i386-gen,c : fix a vstack leak with VLA on windows
- configure/Makefile : build on windows (MSYS) was broken
- tcc_warning: fflush stderr to keep output order (win32)
2015-05-09 15:29:39 +03:00
|
|
|
" -E preprocess only\n"
|
2016-05-05 15:12:53 +03:00
|
|
|
" -P[1] no / alternative #line output with -E\n"
|
|
|
|
" -dD -dM output #define directives with -E\n"
|
2017-02-13 21:03:29 +03:00
|
|
|
" -include file include file above each input file\n"
|
2002-07-16 02:17:02 +04:00
|
|
|
"Linker options:\n"
|
2002-07-22 04:20:38 +04:00
|
|
|
" -Ldir add library path 'dir'\n"
|
2002-08-18 17:22:55 +04:00
|
|
|
" -llib link with dynamic or static library 'lib'\n"
|
2013-02-10 23:39:05 +04:00
|
|
|
" -r generate (relocatable) object file\n"
|
2002-07-28 03:08:04 +04:00
|
|
|
" -shared generate a shared library\n"
|
2016-12-19 00:57:03 +03:00
|
|
|
" -rdynamic export all global symbols to dynamic linker\n"
|
2008-03-26 00:04:47 +03:00
|
|
|
" -soname set name for shared library to be used at runtime\n"
|
2002-07-25 02:10:59 +04:00
|
|
|
" -static static linking\n"
|
2016-12-19 00:57:03 +03:00
|
|
|
" -pthread link with -lpthread and -D_REENTRANT (POSIX Linux)\n"
|
2013-02-12 22:13:28 +04:00
|
|
|
" -Wl,-opt[=val] set linker option (see manual)\n"
|
2002-11-03 03:43:55 +03:00
|
|
|
"Debugger options:\n"
|
|
|
|
" -g generate runtime debug info\n"
|
|
|
|
#ifdef CONFIG_TCC_BCHECK
|
|
|
|
" -b compile with built-in memory and bounds checker (implies -g)\n"
|
|
|
|
#endif
|
2009-04-18 20:21:38 +04:00
|
|
|
#ifdef CONFIG_TCC_BACKTRACE
|
2002-11-03 03:43:55 +03:00
|
|
|
" -bt N show N callers in stack traces\n"
|
2009-04-18 20:21:38 +04:00
|
|
|
#endif
|
tcc: Draft suppoprt for -MD/-MF options
In build systems, this is used to automatically collect target
dependencies, e.g.
---- 8< (hello.c) ----
#include "hello.h"
#include <stdio.h>
int main()
{
printf("Hello World!\n");
return 0;
}
$ tcc -MD -c hello.c # -> hello.o, hello.d
$ cat hello.d
hello.o : \
hello.c \
hello.h \
/usr/include/stdio.h \
/usr/include/features.h \
/usr/include/bits/predefs.h \
/usr/include/sys/cdefs.h \
/usr/include/bits/wordsize.h \
/usr/include/gnu/stubs.h \
/usr/include/bits/wordsize.h \
/usr/include/gnu/stubs-32.h \
/home/kirr/local/tcc/lib/tcc/include/stddef.h \
/usr/include/bits/types.h \
/usr/include/bits/wordsize.h \
/usr/include/bits/typesizes.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.h \
/home/kirr/local/tcc/lib/tcc/include/stdarg.h \
/usr/include/bits/stdio_lim.h \
/usr/include/bits/sys_errlist.h \
NOTE: gcc supports -MD only for .c -> .o, but in tcc, we generate
dependencies for whatever action is being taken. E.g. for .c -> exe, the
result will be:
$ tcc -MD -o hello hello.c # -> hello, hello.d
hello: \
/usr/lib/crt1.o \
/usr/lib/crti.o \
hello.c \
hello.h \
/usr/include/stdio.h \
/usr/include/features.h \
/usr/include/bits/predefs.h \
/usr/include/sys/cdefs.h \
/usr/include/bits/wordsize.h \
/usr/include/gnu/stubs.h \
/usr/include/bits/wordsize.h \
/usr/include/gnu/stubs-32.h \
/home/kirr/local/tcc/lib/tcc/include/stddef.h \
/usr/include/bits/types.h \
/usr/include/bits/wordsize.h \
/usr/include/bits/typesizes.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.h \
/home/kirr/local/tcc/lib/tcc/include/stdarg.h \
/usr/include/bits/stdio_lim.h \
/usr/include/bits/sys_errlist.h \
/usr/lib/libc.so \
/lib/libc.so.6 \
/usr/lib/ld-linux.so.2 \
/lib/ld-linux.so.2 \
/usr/lib/libc_nonshared.a \
/lib/libc.so.6 \
/usr/lib/libc_nonshared.a \
/home/kirr/local/tcc/lib/tcc/libtcc1.a \
/usr/lib/crtn.o \
So tcc dependency generator is a bit more clever than one used in gcc :)
Also, I've updated TODO and Changelog (in not-yet-released section).
v2:
(Taking inputs from grischka and me myself)
- put code to generate deps file into a function.
- used tcc_fileextension() instead of open-coding
- generate deps only when compilation/preprocessing was successful
v3:
- use pstrcpy instead of snprintf(buf, sizeof(buf), "%s", ...)
2010-06-20 20:08:12 +04:00
|
|
|
"Misc options:\n"
|
2016-12-19 00:57:03 +03:00
|
|
|
" -x[c|a|n] specify type of the next infile\n"
|
2013-02-12 22:13:28 +04:00
|
|
|
" -nostdinc do not use standard system include paths\n"
|
|
|
|
" -nostdlib do not link with standard crt and libraries\n"
|
2016-12-19 00:57:03 +03:00
|
|
|
" -Bdir use 'dir' as tcc's private library/include path\n"
|
tcc: Draft suppoprt for -MD/-MF options
In build systems, this is used to automatically collect target
dependencies, e.g.
---- 8< (hello.c) ----
#include "hello.h"
#include <stdio.h>
int main()
{
printf("Hello World!\n");
return 0;
}
$ tcc -MD -c hello.c # -> hello.o, hello.d
$ cat hello.d
hello.o : \
hello.c \
hello.h \
/usr/include/stdio.h \
/usr/include/features.h \
/usr/include/bits/predefs.h \
/usr/include/sys/cdefs.h \
/usr/include/bits/wordsize.h \
/usr/include/gnu/stubs.h \
/usr/include/bits/wordsize.h \
/usr/include/gnu/stubs-32.h \
/home/kirr/local/tcc/lib/tcc/include/stddef.h \
/usr/include/bits/types.h \
/usr/include/bits/wordsize.h \
/usr/include/bits/typesizes.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.h \
/home/kirr/local/tcc/lib/tcc/include/stdarg.h \
/usr/include/bits/stdio_lim.h \
/usr/include/bits/sys_errlist.h \
NOTE: gcc supports -MD only for .c -> .o, but in tcc, we generate
dependencies for whatever action is being taken. E.g. for .c -> exe, the
result will be:
$ tcc -MD -o hello hello.c # -> hello, hello.d
hello: \
/usr/lib/crt1.o \
/usr/lib/crti.o \
hello.c \
hello.h \
/usr/include/stdio.h \
/usr/include/features.h \
/usr/include/bits/predefs.h \
/usr/include/sys/cdefs.h \
/usr/include/bits/wordsize.h \
/usr/include/gnu/stubs.h \
/usr/include/bits/wordsize.h \
/usr/include/gnu/stubs-32.h \
/home/kirr/local/tcc/lib/tcc/include/stddef.h \
/usr/include/bits/types.h \
/usr/include/bits/wordsize.h \
/usr/include/bits/typesizes.h \
/usr/include/libio.h \
/usr/include/_G_config.h \
/usr/include/wchar.h \
/home/kirr/local/tcc/lib/tcc/include/stdarg.h \
/usr/include/bits/stdio_lim.h \
/usr/include/bits/sys_errlist.h \
/usr/lib/libc.so \
/lib/libc.so.6 \
/usr/lib/ld-linux.so.2 \
/lib/ld-linux.so.2 \
/usr/lib/libc_nonshared.a \
/lib/libc.so.6 \
/usr/lib/libc_nonshared.a \
/home/kirr/local/tcc/lib/tcc/libtcc1.a \
/usr/lib/crtn.o \
So tcc dependency generator is a bit more clever than one used in gcc :)
Also, I've updated TODO and Changelog (in not-yet-released section).
v2:
(Taking inputs from grischka and me myself)
- put code to generate deps file into a function.
- used tcc_fileextension() instead of open-coding
- generate deps only when compilation/preprocessing was successful
v3:
- use pstrcpy instead of snprintf(buf, sizeof(buf), "%s", ...)
2010-06-20 20:08:12 +04:00
|
|
|
" -MD generate target dependencies for make\n"
|
|
|
|
" -MF depfile put generated dependencies here\n"
|
2016-12-19 00:57:03 +03:00
|
|
|
" -dumpversion print version\n"
|
|
|
|
" - use stdin pipe as infile\n"
|
|
|
|
" @listfile read arguments from listfile\n"
|
|
|
|
"Target specific options:\n"
|
|
|
|
" -m32/64 execute i386/x86-64 cross compiler\n"
|
|
|
|
" -mms-bitfields use MSVC bitfield layout\n"
|
|
|
|
#ifdef TCC_TARGET_ARM
|
|
|
|
" -mfloat-abi hard/softfp on arm\n"
|
|
|
|
#endif
|
|
|
|
#ifdef TCC_TARGET_X86_64
|
|
|
|
" -mno-sse disable floats on x86-64\n"
|
2017-02-18 11:55:34 +03:00
|
|
|
#endif
|
|
|
|
"Tools:\n"
|
|
|
|
" create library : tcc -ar [rcsv] lib.a files\n"
|
|
|
|
#ifdef TCC_TARGET_PE
|
|
|
|
" create .def file : tcc -impdef lib.dll [-v] [-o lib.def]\n"
|
2016-12-19 00:57:03 +03:00
|
|
|
#endif
|
2002-05-14 03:00:17 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-02-08 21:49:28 +03:00
|
|
|
|
2017-02-18 11:55:34 +03:00
|
|
|
static void version(void)
|
2010-12-08 11:27:06 +03:00
|
|
|
{
|
2017-02-18 11:55:34 +03:00
|
|
|
printf("tcc version %s ("
|
2011-08-06 18:08:33 +04:00
|
|
|
#ifdef TCC_TARGET_I386
|
2017-02-18 11:55:34 +03:00
|
|
|
"i386"
|
|
|
|
#elif defined TCC_TARGET_X86_64
|
|
|
|
"x86-64"
|
|
|
|
#elif defined TCC_TARGET_C67
|
|
|
|
"C67"
|
|
|
|
#elif defined TCC_TARGET_ARM
|
|
|
|
"ARM"
|
|
|
|
# ifdef TCC_ARM_HARDFLOAT
|
|
|
|
" Hard Float"
|
|
|
|
# endif
|
|
|
|
#elif defined TCC_TARGET_ARM64
|
|
|
|
"AArch64"
|
|
|
|
# ifdef TCC_ARM_HARDFLOAT
|
|
|
|
" Hard Float"
|
|
|
|
# endif
|
2011-08-06 18:08:33 +04:00
|
|
|
#endif
|
|
|
|
#ifdef TCC_TARGET_PE
|
2017-02-18 11:55:34 +03:00
|
|
|
" Windows"
|
|
|
|
#elif defined(__APPLE__)
|
|
|
|
/* Current Apple OS name as of 2016 */
|
|
|
|
" macOS"
|
|
|
|
#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
|
|
|
|
" FreeBSD"
|
|
|
|
#elif defined(__DragonFly__)
|
|
|
|
" DragonFly BSD"
|
|
|
|
#elif defined(__NetBSD__)
|
|
|
|
" NetBSD"
|
|
|
|
#elif defined(__OpenBSD__)
|
|
|
|
" OpenBSD"
|
|
|
|
#elif defined(__linux__)
|
|
|
|
" Linux"
|
2017-02-08 21:49:28 +03:00
|
|
|
#else
|
2017-02-18 11:55:34 +03:00
|
|
|
" Unidentified system"
|
2011-08-06 18:08:33 +04:00
|
|
|
#endif
|
2017-02-18 11:55:34 +03:00
|
|
|
")\n", TCC_VERSION);
|
2010-12-08 11:27:06 +03:00
|
|
|
}
|
|
|
|
|
2017-02-18 11:55:34 +03:00
|
|
|
static void print_dirs(const char *msg, char **paths, int nb_paths)
|
2011-08-11 18:55:30 +04:00
|
|
|
{
|
2013-02-12 22:13:28 +04:00
|
|
|
int i;
|
2017-02-18 11:55:34 +03:00
|
|
|
printf("%s:\n%s", msg, nb_paths ? "" : " -\n");
|
|
|
|
for(i = 0; i < nb_paths; i++)
|
|
|
|
printf(" %s\n", paths[i]);
|
|
|
|
}
|
2011-08-11 18:55:30 +04:00
|
|
|
|
2017-02-18 11:55:34 +03:00
|
|
|
static void print_search_dirs(TCCState *s)
|
|
|
|
{
|
|
|
|
printf("install: %s\n", s->tcc_lib_path);
|
|
|
|
/* print_dirs("programs", NULL, 0); */
|
|
|
|
print_dirs("include", s->sysinclude_paths, s->nb_sysinclude_paths);
|
|
|
|
print_dirs("libraries", s->library_paths, s->nb_library_paths);
|
|
|
|
#ifndef TCC_TARGET_PE
|
|
|
|
print_dirs("crt", s->crt_paths, s->nb_crt_paths);
|
|
|
|
printf("elfinterp:\n %s\n", DEFAULT_ELFINTERP(s));
|
|
|
|
#endif
|
2013-02-12 22:13:28 +04:00
|
|
|
}
|
2012-04-18 20:32:37 +04:00
|
|
|
|
2013-02-12 22:13:28 +04:00
|
|
|
static char *default_outputfile(TCCState *s, const char *first_file)
|
|
|
|
{
|
|
|
|
char buf[1024];
|
|
|
|
char *ext;
|
|
|
|
const char *name = "a";
|
|
|
|
|
|
|
|
if (first_file && strcmp(first_file, "-"))
|
|
|
|
name = tcc_basename(first_file);
|
2017-02-08 21:49:28 +03:00
|
|
|
snprintf(buf, sizeof(buf), "%s", name);
|
2013-02-12 22:13:28 +04:00
|
|
|
ext = tcc_fileextension(buf);
|
|
|
|
#ifdef TCC_TARGET_PE
|
|
|
|
if (s->output_type == TCC_OUTPUT_DLL)
|
|
|
|
strcpy(ext, ".dll");
|
|
|
|
else
|
|
|
|
if (s->output_type == TCC_OUTPUT_EXE)
|
|
|
|
strcpy(ext, ".exe");
|
|
|
|
else
|
|
|
|
#endif
|
2016-10-01 21:04:33 +03:00
|
|
|
if (s->output_type == TCC_OUTPUT_OBJ && !s->option_r && *ext)
|
2013-02-12 22:13:28 +04:00
|
|
|
strcpy(ext, ".o");
|
|
|
|
else
|
|
|
|
strcpy(buf, "a.out");
|
|
|
|
return tcc_strdup(buf);
|
|
|
|
}
|
2008-04-27 22:50:35 +04:00
|
|
|
|
2016-10-18 00:24:01 +03:00
|
|
|
static unsigned getclock_ms(void)
|
2013-02-12 22:13:28 +04:00
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
2016-10-18 00:24:01 +03:00
|
|
|
return GetTickCount();
|
2013-02-12 22:13:28 +04:00
|
|
|
#else
|
|
|
|
struct timeval tv;
|
|
|
|
gettimeofday(&tv, NULL);
|
2016-10-18 00:24:01 +03:00
|
|
|
return tv.tv_sec*1000 + (tv.tv_usec+500)/1000;
|
2013-02-12 22:13:28 +04:00
|
|
|
#endif
|
2003-10-05 01:23:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
|
|
{
|
|
|
|
TCCState *s;
|
2017-02-18 11:55:34 +03:00
|
|
|
int ret, opt, n = 0;
|
2016-10-18 00:24:01 +03:00
|
|
|
unsigned start_time = 0;
|
2017-02-18 11:55:34 +03:00
|
|
|
const char *first_file;
|
2003-10-05 01:23:51 +04:00
|
|
|
|
2017-02-18 11:55:34 +03:00
|
|
|
redo:
|
2009-04-18 15:17:27 +04:00
|
|
|
s = tcc_new();
|
2017-02-18 11:55:34 +03:00
|
|
|
opt = tcc_parse_args(s, &argc, &argv, 1);
|
|
|
|
|
|
|
|
if (n == 0) {
|
|
|
|
if (opt == OPT_HELP)
|
|
|
|
return help(), 1;
|
|
|
|
if (opt == OPT_M32 || opt == OPT_M64)
|
|
|
|
tcc_tool_cross(s, argv, opt); /* never returns */
|
|
|
|
if (s->verbose)
|
|
|
|
version();
|
|
|
|
if (opt == OPT_AR)
|
|
|
|
return tcc_tool_ar(s, argc, argv);
|
|
|
|
#ifdef TCC_TARGET_PE
|
|
|
|
if (opt == OPT_IMPDEF)
|
|
|
|
return tcc_tool_impdef(s, argc, argv);
|
|
|
|
#endif
|
|
|
|
if (opt == OPT_V)
|
|
|
|
return 0;
|
2009-07-19 00:07:33 +04:00
|
|
|
|
2017-02-18 11:55:34 +03:00
|
|
|
tcc_set_environment(s);
|
2013-02-12 22:13:28 +04:00
|
|
|
|
2017-02-18 11:55:34 +03:00
|
|
|
if (opt == OPT_PRINT_DIRS) {
|
|
|
|
/* initialize search dirs */
|
|
|
|
tcc_set_output_type(s, TCC_OUTPUT_MEMORY);
|
|
|
|
print_search_dirs(s);
|
|
|
|
return 0;
|
|
|
|
}
|
2011-08-06 18:08:33 +04:00
|
|
|
|
2017-02-18 11:55:34 +03:00
|
|
|
n = s->nb_files;
|
|
|
|
if (n == 0)
|
|
|
|
tcc_error("no input files\n");
|
|
|
|
|
|
|
|
if (s->output_type == TCC_OUTPUT_PREPROCESS) {
|
|
|
|
if (!s->outfile) {
|
|
|
|
s->ppfp = stdout;
|
|
|
|
} else {
|
|
|
|
s->ppfp = fopen(s->outfile, "w");
|
|
|
|
if (!s->ppfp)
|
|
|
|
tcc_error("could not write '%s'", s->outfile);
|
2016-10-01 21:19:37 +03:00
|
|
|
}
|
2017-02-18 11:55:34 +03:00
|
|
|
} else if (s->output_type == TCC_OUTPUT_OBJ) {
|
|
|
|
if (s->nb_libraries != 0 && !s->option_r)
|
|
|
|
tcc_error("cannot specify libraries with -c");
|
|
|
|
if (n > 1 && s->outfile)
|
|
|
|
tcc_error("cannot specify output file with -c many files");
|
|
|
|
} else {
|
|
|
|
if (s->option_pthread)
|
|
|
|
tcc_set_options(s, "-lpthread");
|
2016-10-01 21:19:37 +03:00
|
|
|
}
|
2002-07-18 04:51:11 +04:00
|
|
|
|
2017-02-18 11:55:34 +03:00
|
|
|
if (s->do_bench)
|
|
|
|
start_time = getclock_ms();
|
2002-08-31 02:46:35 +04:00
|
|
|
}
|
2015-05-12 21:32:32 +03:00
|
|
|
|
2016-10-01 21:19:37 +03:00
|
|
|
if (s->output_type == 0)
|
|
|
|
s->output_type = TCC_OUTPUT_EXE;
|
2013-02-12 22:13:28 +04:00
|
|
|
tcc_set_output_type(s, s->output_type);
|
2002-08-31 02:46:35 +04:00
|
|
|
|
|
|
|
/* compile or add each files or library */
|
2017-02-18 11:55:34 +03:00
|
|
|
for (first_file = NULL, ret = 0;;) {
|
|
|
|
struct filespec *f = s->files[s->nb_files - n];
|
|
|
|
s->filetype = f->type;
|
|
|
|
s->alacarte_link = f->alacarte;
|
|
|
|
if (f->type == AFF_TYPE_LIB) {
|
2016-10-01 21:04:58 +03:00
|
|
|
if (tcc_add_library_err(s, f->name) < 0)
|
|
|
|
ret = 1;
|
2002-08-31 02:46:35 +04:00
|
|
|
} else {
|
2016-10-01 20:56:25 +03:00
|
|
|
if (1 == s->verbose)
|
2016-10-01 21:04:58 +03:00
|
|
|
printf("-> %s\n", f->name);
|
2016-10-01 21:04:33 +03:00
|
|
|
if (!first_file)
|
2016-10-01 21:04:58 +03:00
|
|
|
first_file = f->name;
|
2017-02-18 11:55:34 +03:00
|
|
|
if (tcc_add_file(s, f->name) < 0)
|
|
|
|
ret = 1;
|
2002-08-31 02:46:35 +04:00
|
|
|
}
|
2017-02-18 11:55:34 +03:00
|
|
|
s->filetype = 0;
|
2016-10-01 21:54:45 +03:00
|
|
|
s->alacarte_link = 1;
|
2017-02-18 11:55:34 +03:00
|
|
|
if (ret || --n == 0 || s->output_type == TCC_OUTPUT_OBJ)
|
|
|
|
break;
|
2002-07-18 04:51:11 +04:00
|
|
|
}
|
|
|
|
|
2016-10-01 22:52:11 +03:00
|
|
|
if (s->output_type == TCC_OUTPUT_PREPROCESS) {
|
|
|
|
if (s->outfile)
|
|
|
|
fclose(s->ppfp);
|
|
|
|
} else if (0 == ret) {
|
2011-08-06 18:08:46 +04:00
|
|
|
if (s->output_type == TCC_OUTPUT_MEMORY) {
|
2012-03-05 23:15:56 +04:00
|
|
|
#ifdef TCC_IS_NATIVE
|
2017-02-18 11:55:34 +03:00
|
|
|
ret = tcc_run(s, argc, argv);
|
2012-03-05 23:15:56 +04:00
|
|
|
#endif
|
2016-10-01 21:04:33 +03:00
|
|
|
} else {
|
|
|
|
if (!s->outfile)
|
|
|
|
s->outfile = default_outputfile(s, first_file);
|
2017-02-18 11:55:34 +03:00
|
|
|
if (tcc_output_file(s, s->outfile))
|
|
|
|
ret = 1;
|
|
|
|
else if (s->gen_deps)
|
2013-02-12 22:13:28 +04:00
|
|
|
gen_makedeps(s, s->outfile, s->deps_outfile);
|
2010-06-16 16:54:24 +04:00
|
|
|
}
|
2009-07-06 23:10:14 +04:00
|
|
|
}
|
2002-01-26 21:05:29 +03:00
|
|
|
|
2017-02-18 11:55:34 +03:00
|
|
|
if (s->do_bench && ret == 0 && n == 0)
|
2016-10-18 00:24:01 +03:00
|
|
|
tcc_print_stats(s, getclock_ms() - start_time);
|
2009-07-06 23:10:14 +04:00
|
|
|
tcc_delete(s);
|
2017-02-18 11:55:34 +03:00
|
|
|
if (ret == 0 && n)
|
|
|
|
goto redo; /* compile more files with -c */
|
2002-11-02 17:12:32 +03:00
|
|
|
return ret;
|
2001-10-28 02:48:39 +03:00
|
|
|
}
|