This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug driver/13464] [gfortran options] -d8, -i8 and -r8 not passed correctly to compiler proper.
- From: "toon at moene dot indiv dot nluug dot nl" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 23 Dec 2003 13:00:00 -0000
- Subject: [Bug driver/13464] [gfortran options] -d8, -i8 and -r8 not passed correctly to compiler proper.
- References: <20031222115039.13464.toon@moene.indiv.nluug.nl>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- 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