This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug driver/48208] New: -F option is not joined


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: unassigned@gcc.gnu.org
        ReportedBy: gcchelp.5.adept@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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]