From a350a6c8f7e412c0be3b9da2c7a69d7ca5e8a605 Mon Sep 17 00:00:00 2001 From: Iain Sandoe Date: Sat, 12 Feb 2011 10:08:24 +0000 Subject: 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 --- gcc/gcc.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'gcc/gcc.c') diff --git a/gcc/gcc.c b/gcc/gcc.c index ec35ed0..c31dafc 100644 --- a/gcc/gcc.c +++ b/gcc/gcc.c @@ -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; -- cgit v1.1