From 8042121d74906eacec7add2ddc85270e1db3ca88 Mon Sep 17 00:00:00 2001 From: grischka Date: Sun, 10 Feb 2013 00:38:40 +0100 Subject: tcc -vv/--print-search-dirs: print more info tests/Makefile: - print-search-dirs when 'hello' fails - split off hello-run win32/include/_mingw.h: - fix for compatibility with mingw headers (While our headers in win32 are from mingw-64 and don't have the problem) tiny_libmaker: - don't use "dangerous" mktemp --- tcc.c | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'tcc.c') diff --git a/tcc.c b/tcc.c index 3116c40..bad9b4e 100644 --- a/tcc.c +++ b/tcc.c @@ -508,17 +508,21 @@ int main(int argc, char **argv) #endif if (print_search_dirs) { - /* enough for Linux kernel */ - printf("install: %s/\n", s->tcc_lib_path); +psd: + tcc_set_output_type(s, TCC_OUTPUT_MEMORY); + tcc_display_info(s, 1); return 0; } if (s->verbose) - printf("tcc version %s\n", TCC_VERSION); + tcc_display_info(s, 0); if (optind == 0 || nb_files == 0) { - if (optind && s->verbose) + if (optind && s->verbose) { + if (s->verbose == 2) + goto psd; return 0; + } help(); return 1; } -- cgit v1.3.1