Commit d644be7b by Zack Weinberg Committed by Zack Weinberg

gcc.c (main): Set this_file_error if the appropriate compiler for a language has not been...

	* gcc.c (main): Set this_file_error if the appropriate
	compiler for a language has not been installed.

From-SVN: r46049
parent 68f589c8
2001-10-06 Zack Weinberg <zack@codesourcery.com>
* gcc.c (main): Set this_file_error if the appropriate
compiler for a language has not been installed.
2001-10-06 Ulrich Weigand <uweigand@de.ibm.com>
* config/s390/s390.c (s390_va_arg): Use set_mem_alias_set.
......
......@@ -5964,11 +5964,17 @@ main (argc, argv)
/* Ok, we found an applicable compiler. Run its spec. */
if (input_file_compiler->spec[0] == '#')
error ("%s: %s compiler not installed on this system",
input_filename, &input_file_compiler->spec[1]);
value = do_spec (input_file_compiler->spec);
if (value < 0)
this_file_error = 1;
{
error ("%s: %s compiler not installed on this system",
input_filename, &input_file_compiler->spec[1]);
this_file_error = 1;
}
else
{
value = do_spec (input_file_compiler->spec);
if (value < 0)
this_file_error = 1;
}
}
/* If this file's name does not contain a recognized suffix,
......
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