diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-04-08 22:39:36 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-04-08 16:39:36 -0600 |
commit | c74c0cff2d8951cc8bcb41be806cd8af45805575 (patch) | |
tree | 4fa8e7e7c505761afb0aed9875cc6998cd0b4af2 /gcc | |
parent | 85d7aed9501a610825d3735614de5babf8b4d0fb (diff) | |
download | gcc-c74c0cff2d8951cc8bcb41be806cd8af45805575.zip gcc-c74c0cff2d8951cc8bcb41be806cd8af45805575.tar.gz gcc-c74c0cff2d8951cc8bcb41be806cd8af45805575.tar.bz2 |
gcc.c (proces_command): Improve error message for -o with either -c or -S.
* gcc.c (proces_command): Improve error message for -o with
either -c or -S.
From-SVN: r19058
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/gcc.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 323b0c8..1017d18 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -23,6 +23,9 @@ Fri Apr 3 17:02:13 1998 Alexandre Petit-Bianco <apbianco@cygnus.com> Wed Apr 8 12:51:19 1998 Jeffrey A Law (law@cygnus.com) + * gcc.c (proces_command): Improve error message for -o with + either -c or -S. + * i386/x-cygwin32 (CLIB): Link in advapi32. * alpha.h (ASM_IDENTIFY_GCC): Define to nothing. @@ -2821,7 +2821,7 @@ process_command (argc, argv) } if (have_c && have_o && lang_n_infiles > 1) - fatal ("cannot specify -o with -c and multiple compilations"); + fatal ("cannot specify -o with -c or -S and multiple compilations"); /* Set up the search paths before we go looking for config files. */ |