Deleted Added
full compact
gcc.c (146908) gcc.c (161660)
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.
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.
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9Software Foundation; either version 2, or (at your option) any later
10version.
11

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

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

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

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

--- 4056 unchanged lines hidden ---
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 ---