------- Comment #9 from burnus at gcc dot gnu dot org 2010-07-29 08:26 ------- The committed patch has added:
+#ifdef HAVE_TTYNAME + if (u->unit_number == options.stdin_unit + || u->unit_number == options.stdout_unit + || u->unit_number == options.stderr_unit) + { + char * tmp = ttyname (((unix_stream *) u->s)->fd); + if (tmp != NULL) + { + int tmplen = strlen (tmp); + fstrcpy (iqp->name, iqp->name_len, tmp, tmplen); + } + else /* If ttyname does not work, go with the default. */ + fstrcpy (iqp->name, iqp->name_len, u->file, u->file_len); + } + else +#endif + fstrcpy (iqp->name, iqp->name_len, u->file, u->file_len); + } For MINGW I would suggest to remove the last three lines and add the following: + fstrcpy (iqp->name, iqp->name_len, u->file, u->file_len); + #elif defined __MINGW32__ + switch (u->unit_number) + { + case options.stdin_unit: + fstrcpy (iqp->name, iqp->name_len, "conin$", sizeof("conin$")); + break; + case options.stdout_unit: + fstrcpy (iqp->name, iqp->name_len, "conout$", sizeof("conout$")); + break; + case options.stderr_unit: + fstrcpy (iqp->name, iqp->name_len, "conerr$", sizeof("conerr$")); + break; + default: + fstrcpy (iqp->name, iqp->name_len, u->file, u->file_len); + } +#else + fstrcpy (iqp->name, iqp->name_len, u->file, u->file_len); +#endif + } Note: This was written as is - there might be typos and it might not be even compile. Note 2: Kai says that on MINGW, HAVE_TTYNAME is not defined. -- http://gcc.gnu.org/bugzilla/show_bug.cgi?id=44931