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/13464] [gfortran options] -d8, -i8 and -r8 not passed correctly to compiler proper.


------- Additional Comments From toon at moene dot indiv dot nluug dot nl  2003-12-23 12:59 -------
Isn't this caused by the following in opts.sh

            # If this switch takes joined arguments, back-chain all
            # subsequent switches to it for which it is a prefix.  If
            # a later switch S is a longer prefix of a switch T, T
            # will be back-chained to S in a later iteration of this
            # for() loop, which is what we want.
            if (flags[i] ~ "Joined") {
                for (j = i + 1; j < n_opts; j++) {
                    if (substr (opts[j], 1, len) != opts[i])
                        break;
                    back_chain[j] = enum;
                }
            }

and is this really what we want ?

-- 


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


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