http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48208

           Summary: -F option is not joined
           Product: gcc
           Version: 4.6.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: driver
        AssignedTo: unassig...@gcc.gnu.org
        ReportedBy: gcchelp.5.ad...@0sg.net


The darwin linker complains that the argument to the -F option is not joined.
There seems to be code in the driver to do just this (gcc.c)

    case OPT_F:
      /* Likewise -F.  */
      save_switch (concat ("-F", arg, NULL), 0, NULL, validated);
      return true;

but this can never be called since the -F option does not have CL_DRIVER flag
(c.opt)

F
C ObjC C++ ObjC++ Joined Separate MissingArgError(missing path after %qs)
-F <dir>    Add <dir> to the end of the main framework include path

please change it to

F
Driver C ObjC C++ ObjC++ Joined Separate MissingArgError(missing path after
%qs)
-F <dir>    Add <dir> to the end of the main framework include path

Reply via email to