Commit c74c0cff by Jeffrey A Law Committed by Jeff Law

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
parent 85d7aed9
...@@ -23,6 +23,9 @@ Fri Apr 3 17:02:13 1998 Alexandre Petit-Bianco <apbianco@cygnus.com> ...@@ -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) 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. * i386/x-cygwin32 (CLIB): Link in advapi32.
* alpha.h (ASM_IDENTIFY_GCC): Define to nothing. * alpha.h (ASM_IDENTIFY_GCC): Define to nothing.
......
...@@ -2821,7 +2821,7 @@ process_command (argc, argv) ...@@ -2821,7 +2821,7 @@ process_command (argc, argv)
} }
if (have_c && have_o && lang_n_infiles > 1) 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. */ /* Set up the search paths before we go looking for config files. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment