Deleted Added
sdiff udiff text old ( 146908 ) new ( 161660 )
full compact
1/* Compiler driver program that can handle many languages.
2 Copyright (C) 1987, 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
4 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation,
5 Inc.
6
7This file is part of GCC.
8
9GCC is free software; you can redistribute it and/or modify it under
10the terms of the GNU General Public License as published by the Free
11Software Foundation; either version 2, or (at your option) any later
12version.
13

--- 5 unchanged lines hidden (view full) ---

19You should have received a copy of the GNU General Public License
20along with GCC; see the file COPYING. If not, write to the Free
21Software Foundation, 59 Temple Place - Suite 330, Boston, MA
2202111-1307, USA.
23
24This paragraph is here to try to keep Sun CC from dying.
25The number of chars here seems crucial!!!! */
26
27/* $FreeBSD: head/contrib/gcc/gcc.c 161660 2006-08-26 21:37:21Z kan $ */
28
29/* This program is the user interface to the C compiler and possibly to
30other compilers. It is used because compilation is a complicated procedure
31which involves running several programs and passing temporary files between
32them, forwarding the users switches to those programs selectively,
33and deleting the temporary files at the end.
34
35CC recognizes how to compile each input file by suffixes in the file names.

--- 3367 unchanged lines hidden (view full) ---

3403 {
3404 printf ("%s\n", spec_machine);
3405 exit (0);
3406 }
3407 else if (strcmp (argv[i], "-fversion") == 0)
3408 {
3409 /* translate_options () has turned --version into -fversion. */
3410 printf (_("%s (GCC) %s\n"), programname, version_string);
3411 printf ("Copyright %s 2006 Free Software Foundation, Inc.\n",
3412 _("(C)"));
3413 fputs (_("This is free software; see the source for copying conditions. There is NO\n\
3414warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\n"),
3415 stdout);
3416 exit (0);
3417 }
3418 else if (strcmp (argv[i], "-fhelp") == 0)
3419 {

--- 4056 unchanged lines hidden ---