Commit a350a6c8 by Iain Sandoe

gcc.c (driver_handle_option): Concatenate the argument to -F with the switch.


gcc:

	* gcc.c (driver_handle_option): Concatenate the argument to -F with
	the switch.

From-SVN: r170068
parent bab79a40
2011-02-12 Iain Sandoe <iains@gcc.gnu.org>
* gcc.c (driver_handle_option): Concatenate the argument to -F with
the switch.
2011-02-11 Joseph Myers <joseph@codesourcery.com>
* common.opt (nostartfiles): New Driver option.
......
......@@ -3330,6 +3330,11 @@ driver_handle_option (struct gcc_options *opts,
save_switch (concat ("-L", arg, NULL), 0, NULL, validated);
return true;
case OPT_F:
/* Likewise -F. */
save_switch (concat ("-F", arg, NULL), 0, NULL, validated);
return true;
case OPT_save_temps:
save_temps_flag = SAVE_TEMPS_CWD;
validated = true;
......
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