mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-08 15:42:07 +08:00
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
This commit is contained in:
parent
bab79a4029
commit
a350a6c8f7
@ -1,3 +1,8 @@
|
||||
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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user