public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* cin and read(*,*) not waiting for kbd input in gdb
@ 2020-01-16 21:03 Rockefeller, Harry
  2020-01-17 15:40 ` Jon Turney
  0 siblings, 1 reply; 7+ messages in thread
From: Rockefeller, Harry @ 2020-01-16 21:03 UTC (permalink / raw)
  To: cygwin

[-- Attachment #1: Type: text/plain, Size: 2914 bytes --]

Both the Fortran and cpp used to work correctly when run in gdb.
FWIW, Both Fortran and cpp work correctly, stopping for keyboard input, when run outside of gdb.

But now, code simply doesn't stop to take keyboard input inside gdb.

I've tried simplifying cpp problem with simple code.
e.g.
#include <iostream> // to enable terminal printout
#include <cmath>    // pow function
int main() {
  float request_time_to_run(void);
  float a=0.0f;
  a = request_time_to_run();
  printf ("a is %f\n", a);
}
float request_time_to_run() {
  float tm = 0.0;        // Time duration (sec)
  std::string ans = "";  // interactive answer for time duration
  std::cout << "Supply the equivalent of runtime in seconds. \n";
  std::cout << "Note: time=0 will stop main. \n";
  std::cin >> ans;
  if ( (int)(ans[0]) < 48 || (int)(ans[0] > 57) ) {
    tm = 1.0;
  } else {
    int i;
    int j = 0;
    tm = 0.0;
    for (i=ans.length() - 1; i>=0; i--) {
      tm += ((int)(ans[i]) - 48) * pow( 10, j++);
    }
  }
  return tm;
}

But, simple stuff does run correctly in gdb stopping for terminal input at
  std::cin >> ans;
FWIW, for simple cpp above neither the cout nor the cin works directly (not running in gdb).

But with complicated code using gdb step by step into this line eventually shows this:
"/wip/cygport-git/gdb/gdb-8.2.1-1.x86_64/src/gdb-8.2.1/gdb/infrun.c:2723: internal-error: void resume_1(gdb_signal): Assertion `pc_in_thread_step_range (pc, tp)' failed.
A problem internal to GDB has been detected,
further debugging may prove unreliable."

Where the gdb line-of-code pointer is here:
      virtual std::streamsize
      xsputn(const char_type* __s, std::streamsize __n);

      virtual int
      sync()
 >     { return std::fflush(_M_file); }

      virtual std::streampos
      seekoff(std::streamoff __off, std::ios_base::seekdir __dir,
      std::ios_base::openmode = std::ios_base::in | std::ios_base::out)
      {

When I run the fortran software and do gdb step by step into the line having the read(*,*)
There seems to be an infinite loop.  So when I just send the gdb continue
it fails with this info:
At line 40 of file jhx.f (unit = 5, file = 'stdin')
Fortran runtime error: End of file

Error termination. Backtrace:
#0  0xffffffffffffffff in ???
#1  0xffffffffffffffff in ???
#2  0xffffffffffffffff in ???
#3  0xffffffffffffffff in ???
#4  0xffffffffffffffff in ???
#5  0xffffffffffffffff in ???
#6  0xffffffffffffffff in ???
#7  0xffffffffffffffff in ???
#8  0xffffffffffffffff in ???
#9  0xffffffffffffffff in ???
#10  0xffffffffffffffff in ???
#11  0xffffffffffffffff in ???
#12  0xffffffffffffffff in ???
[Thread 7872.0x1e20 exited with code 2]
[Thread 7872.0x20f0 exited with code 2]
[Thread 7872.0x1b80 exited with code 2]
[Thread 7872.0x3e8 exited with code 2]
[Inferior 1 (process 7872) exited with code 02]

[-- Attachment #2: cygcheck.out --]
[-- Type: application/octet-stream, Size: 130689 bytes --]

Cygwin Package Information
Package                                    Version                         Status
_autorebase                                001007-1                        OK
a2ps                                       4.14-3                          OK
adwaita-icon-theme                         3.26.1-1                        OK
adwaita-themes                             3.22.3-1                        OK
alternatives                               1.3.30c-10                      OK
appstream                                  0.11.7-1                        OK
archivemail                                0.9.0-1                         OK
aspell                                     0.60.8-1                        OK
aspell-debuginfo                           0.60.8-1                        OK
aspell-en                                  2017.08.24.0-1                  OK
at-spi2-core                               2.26.2-1                        OK
autoconf                                   13-1                            OK
autoconf2.1                                2.13-12                         OK
autoconf2.5                                2.69-4                          OK
automake                                   11-1                            OK
automake1.10                               1.10.3-3                        OK
automake1.11                               1.11.6-3                        OK
automake1.12                               1.12.6-3                        OK
automake1.13                               1.13.4-2                        OK
automake1.14                               1.14.1-3                        OK
automake1.15                               1.15.1-2                        OK
automake1.16                               1.16.1-1                        OK
automake1.4                                1.4p6-11                        OK
automake1.5                                1.5-11                          OK
automake1.6                                1.6.3-12                        OK
automake1.7                                1.7.9-11                        OK
automake1.8                                1.8.5-11                        OK
automake1.9                                1.9.6-11                        OK
base-cygwin                                3.8-1                           OK
base-files                                 4.3-2                           OK
bash                                       4.4.12-3                        OK
bcrypt                                     1.1-3                           OK
biber                                      2.13-1                          OK
binutils                                   2.29-1                          OK
bitstream-vera-fonts                       1.10-2                          OK
build-docbook-catalog                      1.5-2                           OK
bzip2                                      1.0.8-1                         OK
bzip2-debuginfo                            1.0.8-1                         OK
bzr                                        2.7.0+bzr6622-1                 OK
bzr-fastimport                             0.13.0-2                        OK
ca-certificates                            2.32-1                          OK
catdoc                                     0.95-1                          OK
catgets                                    2.10.0-1                        OK
cgdb                                       0.6.7+20190803+gitb6326f1-1     OK
cgdb-debuginfo                             0.6.7-1                         OK
chm2pdf                                    0.9.1-3                         OK
chmlib                                     0.40-1                          OK
clang                                      8.0.1-1                         OK
cmake                                      3.14.5-1                        OK
cmake-debuginfo                            3.14.5-1                        OK
cmake-doc                                  3.14.5-1                        OK
cmake-gui                                  3.14.5-1                        OK
colorgcc                                   1.3.2-2                         OK
compiler-rt                                8.0.1-1                         OK
coreutils                                  8.26-2                          OK
cron                                       4.1-65                          OK
crypt                                      2.1-1                           OK
crypto-policies                            20190218-1                      OK
csih                                       0.9.11-1                        OK
cvs2svn                                    2.4.0-1                         OK
cygrunsrv                                  1.62-1                          OK
cygutils                                   1.4.16-2                        OK
cygutils-debuginfo                         1.4.16-2                        OK
cygutils-extra                             1.4.16-2                        OK
cygutils-x11                               1.4.16-2                        OK
cygwin                                     3.1.2-1                         OK
cygwin-debuginfo                           3.1.2-1                         OK
cygwin-devel                               3.1.2-1                         OK
cygwin32                                   2.10.0-1                        OK
cygwin32-gcc-debuginfo                     6.4.0-1                         OK
cygwin32-minizip                           1.2.8-1                         OK
cygwin32-zlib                              1.2.8-1                         OK
dash                                       0.5.9.1-1                       OK
dblatex                                    0.3.10-1                        OK
dbus                                       1.10.22-1                       OK
dbus-x11                                   1.10.22-1                       OK
dconf-service                              0.26.1-1                        OK
dejavu-fonts                               2.37-1                          OK
desktop-file-utils                         0.23-1                          OK
dia                                        0.97.3-1                        OK
dialog                                     1.3-3.20170131                  OK
diffutils                                  3.5-2                           OK
djgpp-binutils                             2.25-2                          OK
djgpp-gcc-ada                              5.4.0-1                         OK
djgpp-gcc-core                             5.4.0-1                         OK
djgpp-gcc-debuginfo                        5.4.0-1                         OK
djgpp-gcc-fortran                          5.4.0-1                         OK
djgpp-gcc-g++                              5.4.0-1                         OK
djgpp-gcc-objc                             5.4.0-1                         OK
djgpp-gcc-objc++                           5.4.0-1                         OK
djgpp-runtime                              2.05-1                          OK
docbook-xml45                              4.5-1                           OK
docbook-xsl                                1.77.1-1                        OK
dos2unix                                   7.4.1-1                         OK
dos2unix-debuginfo                         7.4.1-1                         OK
dri-drivers                                19.1.6-1                        OK
ed                                         1.15-1                          OK
editrights                                 1.03-1                          OK
emacs                                      26.3-2                          OK
emacs-auctex                               12.1-1                          OK
emacs-clang-format                         8.0.1-1                         OK
emacs-cmake                                3.14.5-1                        OK
emacs-common                               26.3-2                          OK
emacs-debuginfo                            26.3-2                          OK
emacs-gettext                              0.19.8.1-2                      OK
emacs-X11                                  26.3-2                          OK
email                                      3.2.3-git-2                     OK
email-debuginfo                            3.2.3-git-2                     OK
exim                                       4.92.3-1                        OK
extra-cmake-modules                        5.43.0-1                        OK
fcrackzip                                  1.0-1                           OK
file                                       5.32-1                          OK
findutils                                  4.6.0-1                         OK
font-bitstream-vera-ttf                    1.10-2                          OK
font-tektronix-misc                        2.6-5                           OK
font-util                                  1.3.2-1                         OK
font-util-debuginfo                        1.3.2-1                         OK
fontconfig                                 2.13.1-1                        OK
gamin                                      0.1.10-15                       OK
gawk                                       5.0.1-1                         OK
gcc-ada                                    7.4.0-1                         OK
gcc-cilkplus                               7.4.0-1                         OK
gcc-core                                   7.4.0-1                         OK
gcc-debuginfo                              7.4.0-1                         OK
gcc-fortran                                7.4.0-1                         OK
gcc-g++                                    7.4.0-1                         OK
gcc-objc                                   7.4.0-1                         OK
gcc-objc++                                 7.4.0-1                         OK
gcc-tools-epoch1-autoconf                  2.59-2                          OK
gcc-tools-epoch1-automake                  1.9.6-2                         OK
gcc-tools-epoch2-autoconf                  2.64-2                          OK
gcc-tools-epoch2-automake                  1.11.6-1                        OK
gccmakedep                                 1.0.3-1                         OK
gconf-desktop-schemas                      2.32.1-3                        OK
GConf2                                     3.2.6-2                         OK
gcr                                        3.20.0-1                        OK
gdb                                        8.2.1-1                         OK
gdb-debuginfo                              8.2.1-1                         OK
gdbm-debuginfo                             1.18.1-1                        OK
gdk-pixbuf2.0-svg                          2.40.20-1                       OK
getent                                     2.18.90-4                       OK
gettext                                    0.19.8.1-2                      OK
ghostscript                                9.27-1                          OK
ghostscript-fonts-other                    6.0-1                           OK
girepository-Atk1.0                        2.26.1-1                        OK
girepository-Atspi2.0                      2.26.2-1                        OK
girepository-cairo1.0                      1.54.1-1                        OK
girepository-GdkPixbuf2.0                  2.36.11-1                       OK
girepository-GLib2.0                       1.54.1-1                        OK
girepository-Gst1.0                        1.12.5-1                        OK
girepository-GstInterfaces1.0              1.12.5-1                        OK
girepository-Gtk3.0                        3.22.28-1                       OK
girepository-HarfBuzz0.0                   2.5.3-1                         OK
girepository-Json1.0                       1.4.2-1                         OK
girepository-Pango1.0                      1.40.14-1                       OK
girepository-Secret1                       0.18.5-1                        OK
girepository-x11                           1.54.1-1                        OK
git                                        2.21.0-1                        OK
git-email                                  2.21.0-1                        OK
git-svn                                    2.21.0-1                        OK
glib2.0-networking                         2.54.1-1                        OK
gnome-font-viewer                          3.26.0-1                        OK
gnome-font-viewer-debuginfo                3.26.0-1                        OK
gnome-keyring                              3.20.1-1                        OK
gnome-menus                                3.13.3-3                        OK
gnome-mime-data                            2.18.0-10                       OK
gnome-sudoku                               3.26.0-1                        OK
gnupg                                      1.4.23-1                        OK
gnuplot                                    5.2.8-1                         OK
gnuplot-debuginfo                          5.2.8-1                         OK
grep                                       3.0-2                           OK
groff                                      1.22.4-1                        OK
groff-perl                                 1.22.4-1                        OK
groff-X11                                  1.22.4-1                        OK
gsettings-desktop-schemas                  3.24.1-1                        OK
gtk-update-icon-cache                      3.22.28-1                       OK
gtk2.0-engines-pixmap                      2.24.32-1                       OK
gv                                         3.7.4-1                         OK
gzip                                       1.8-1                           OK
gzip-debuginfo                             1.8-1                           OK
hexchat                                    2.14.2-1                        OK
hexchat-perl                               2.14.2-1                        OK
hicolor-icon-theme                         0.15-1                          OK
hostname                                   3.13-1                          OK
html2ps                                    1.0b7-2                         OK
htmldoc                                    1.8.28-3                        OK
httpd                                      2.4.39-1                        OK
ImageMagick                                6.9.10.11-1                     OK
imake                                      1.0.8-1                         OK
imake-debuginfo                            1.0.8-1                         OK
info                                       6.7-1                           OK
ipc-utils                                  1.0-2                           OK
iso-codes                                  4.3-1                           OK
jpeg                                       1.5.3-1                         OK
kcron                                      17.12.3-1                       OK
kcron-debuginfo                            17.12.3-1                       OK
kf5-kdoctools                              5.43.0-1                        OK
khrplatform-devel                          19.1.6-1                        OK
ksudoku                                    17.12.3-1                       OK
less                                       551-1                           OK
libakonadiprotocolinternals1               1.13.0-6                        OK
libanthy-common                            9100h-2                         OK
libanthy0                                  9100h-2                         OK
libappstream4                              0.11.7-1                        OK
libapr1                                    1.6.5-1                         OK
libapr1-devel                              1.6.5-1                         OK
libaprutil1                                1.6.1-1                         OK
libaprutil1-devel                          1.6.1-1                         OK
libarchive13                               3.3.2-1                         OK
libargon2_1                                20171227-1                      OK
libargp                                    20110921-3                      OK
libart_lgpl_2_2                            2.3.21-2                        OK
libaspell-devel                            0.60.8-1                        OK
libaspell15                                0.60.8-1                        OK
libassuan0                                 2.5.3-1                         OK
libasyncns0                                0.8-1                           OK
libatk-bridge2.0-devel                     2.26.1-1                        OK
libatk-bridge2.0_0                         2.26.1-1                        OK
libatk1.0-devel                            2.26.1-1                        OK
libatk1.0_0                                2.26.1-1                        OK
libatomic1                                 7.4.0-1                         OK
libatspi-devel                             2.26.2-1                        OK
libatspi0                                  2.26.2-1                        OK
libattica0.4                               0.4.2-1                         OK
libattr1                                   2.4.48-2                        OK
libaudio2                                  1.9.3-1                         OK
libautotrace3                              0.31.1-19                       OK
libavahi-client3                           0.7-1                           OK
libavahi-common3                           0.7-1                           OK
libavahi-glib1                             0.7-1                           OK
libblkid1                                  2.33.1-1                        OK
libbonobo2_0                               2.32.1-2                        OK
libbonoboui2_0                             2.24.5-2                        OK
libboost_locale1.66                        1.66.0-1                        OK
libboost_system1.66                        1.66.0-1                        OK
libboost_thread1.66                        1.66.0-1                        OK
libbotan1.10_1                             1.10.17-2                       OK
libbrotlicommon1                           1.0.7-1                         OK
libbrotlidec1                              1.0.7-1                         OK
libbz2-devel                               1.0.8-1                         OK
libbz2_1                                   1.0.8-1                         OK
libc++-devel                               8.0.1-1                         OK
libc++1                                    8.0.1-1                         OK
libc++abi-devel                            8.0.1-1                         OK
libc++abi1                                 8.0.1-1                         OK
libcairo-devel                             1.16.0-1                        OK
libcairo2                                  1.16.0-1                        OK
libcanberra-gtk3_0                         0.30-2                          OK
libcanberra0                               0.30-2                          OK
libcatgets-devel                           2.10.0-1                        OK
libcatgets1                                1.1-2                           OK
libcdt5                                    2.40.1-4                        OK
libcerf1                                   1.13-1                          OK
libcfitsio3                                3.360-1                         OK
libcfitsio7                                3.470-1                         OK
libcgraph6                                 2.40.1-4                        OK
libcharset1                                1.14-3                          OK
libchm0                                    0.40-1                          OK
libcilkrts5                                7.4.0-1                         OK
libclang3.8                                3.8.1-1                         OK
libclang3.9                                3.9.1-1                         OK
libclang4.0                                4.0.1-1                         OK
libclang5.0                                5.0.1-2                         OK
libclang8                                  8.0.1-1                         OK
libcom_err-devel                           1.44.5-1                        OK
libcom_err2                                1.44.5-1                        OK
libcord1                                   8.0.4-1                         OK
libcroco0.6_3                              0.6.12-1                        OK
libcrypt-devel                             4.4.4-1                         OK
libcrypt0                                  2.1-1                           OK
libcrypt2                                  4.4.4-1                         OK
libcurl4                                   7.66.0-1                        OK
libdatrie1                                 0.2.8-1                         OK
libdb-devel                                5.3.28-2                        OK
libdb5.3                                   5.3.28-2                        OK
libdbus-glib_1_2                           0.108-1                         OK
libdbus1-devel                             1.10.22-1                       OK
libdbus1_3                                 1.10.22-1                       OK
libdbusmenu-qt2                            0.9.3-0.2.20150604bzr           OK
libdbusmenu-qt5_2                          0.9.3-0.2.20150604bzr           OK
libdialog13                                1.3-2.20160828                  OK
libdialog14                                1.3-3.20170131                  OK
libdmtx0                                   0.7.4-1                         OK
libdotconf0                                1.3-1                           OK
libedit0                                   20130712-1                      OK
libEGL-devel                               19.1.6-1                        OK
libEGL1                                    19.1.6-1                        OK
libEMF1                                    1.0.9-1                         OK
libenchant1                                1.6.1-1                         OK
libepoxy-devel                             1.4.3-1                         OK
libepoxy0                                  1.4.3-1                         OK
libespeak1                                 1.47.11-1                       OK
libevent2.0_5                              2.0.22-1                        OK
libexif-common                             0.6.21-3                        OK
libexif12                                  0.6.21-3                        OK
libexiv2_14                                0.25-2                          OK
libexpat-devel                             2.2.6-1                         OK
libexpat1                                  2.2.6-1                         OK
libfam0                                    0.1.10-15                       OK
libfdisk1                                  2.33.1-1                        OK
libffi6                                    3.2.1-2                         OK
libfftw3_3                                 3.3.8-1                         OK
libFLAC8                                   1.3.2-1                         OK
libflite1                                  1.4-1                           OK
libfltk1.3                                 1.3.4-1                         OK
libfontconfig-common                       2.13.1-1                        OK
libfontconfig-devel                        2.13.1-1                        OK
libfontconfig1                             2.13.1-1                        OK
libfontenc-devel                           1.1.4-1                         OK
libfontenc1                                1.1.4-1                         OK
libfpx1                                    1.3.1.4-1                       OK
libfreetype-devel                          2.9.1-1                         OK
libfreetype6                               2.9.1-1                         OK
libfribidi0                                0.19.7-1                        OK
libgailutil18                              2.24.32-1                       OK
libgc1                                     8.0.4-1                         OK
libgc2                                     7.6.2-3                         OK
libgcc1                                    7.4.0-1                         OK
libgccpp1                                  8.0.4-1                         OK
libgck1_0                                  3.20.0-1                        OK
libgconf2_4                                3.2.6-2                         OK
libgcr-base3_1                             3.20.0-1                        OK
libgcr-ui3-common                          3.20.0-1                        OK
libgcr-ui3_1                               3.20.0-1                        OK
libgcrypt20                                1.8.2-1                         OK
libgd3                                     2.2.5-2                         OK
libgdal20                                  2.4.0-1                         OK
libgdal26                                  3.0.2-1                         OK
libgdbm-devel                              1.18.1-1                        OK
libgdbm4                                   1.13-1                          OK
libgdbm6                                   1.18.1-1                        OK
libgdbm_compat4                            1.18.1-1                        OK
libgdk_pixbuf2.0-devel                     2.36.11-1                       OK
libgdk_pixbuf2.0_0                         2.36.11-1                       OK
libgee0.8_2                                0.20.1-1                        OK
libgeoclue0                                0.12.99-2                       OK
libgeos_3_5                                3.5.0-1                         OK
libgeos_3_5_1                              3.5.1-1                         OK
libgeos_3_7_0                              3.7.0-1                         OK
libgeos_3_7_1                              3.7.1-1                         OK
libgeos_c1                                 3.7.1-1                         OK
libgeotiff2                                1.4.3-1                         OK
libgfortran3                               6.4.0-5                         OK
libgfortran4                               7.4.0-1                         OK
libggi2                                    2.2.2-4                         OK
libggiwmh0                                 0.3.2-4                         OK
libgif4                                    4.1.6-12                        OK
libgif7                                    5.1.4-1                         OK
libgii1                                    1.0.2-4                         OK
libgirepository1.0_1                       1.54.1-1                        OK
libGL-devel                                19.1.6-1                        OK
libGL1                                     19.1.6-1                        OK
libglade2.0_0                              2.6.4-2                         OK
libglapi0                                  19.1.6-1                        OK
libglib2.0-devel                           2.54.3-1                        OK
libglib2.0_0                               2.54.3-1                        OK
libGLU1                                    9.0.0-1                         OK
libglut3                                   3.2.1-1                         OK
libgmp10                                   6.1.2-1                         OK
libgnat6                                   6.4.0-5                         OK
libgnat7                                   7.4.0-1                         OK
libgnome-desktop3-common                   3.26.2-1                        OK
libgnome-desktop3_12                       3.26.2-1                        OK
libgnome-keyring-devel                     3.12.0-2                        OK
libgnome-keyring0                          3.12.0-2                        OK
libgnome-menu3_0                           3.13.3-3                        OK
libgnome2_0                                2.32.1-3                        OK
libgnomecanvas2_0                          2.30.3-2                        OK
libgnomeui2_0                              2.24.5-2                        OK
libgnomevfs2_0                             2.24.4-6                        OK
libgnutls28                                3.3.27-1                        OK
libgnutls30                                3.6.9-1                         OK
libgomp1                                   7.4.0-1                         OK
libgpg-error0                              1.28-1                          OK
libgpgme11                                 1.9.0-1                         OK
libgpgmepp6                                1.9.0-1                         OK
libGraphicsMagick3                         1.3.34-1                        OK
libgraphite2-devel                         1.3.10-1                        OK
libgraphite2_3                             1.3.10-1                        OK
libgs9                                     9.27-1                          OK
libgsf-common                              1.14.42-1                       OK
libgsf1_114                                1.14.42-1                       OK
libgsm1                                    1.0.17-1                        OK
libgssapi_krb5_2                           1.15.2-2                        OK
libgssrpc4                                 1.15.2-2                        OK
libgstbad1.0_0                             1.12.5-1                        OK
libgstinterfaces0.10_0                     0.10.36-3                       OK
libgstinterfaces1.0_0                      1.12.5-1                        OK
libgstreamer0.10_0                         0.10.36-2                       OK
libgstreamer1.0_0                          1.12.5-1                        OK
libgtk2.0-devel                            2.24.32-1                       OK
libgtk2.0_0                                2.24.32-1                       OK
libgtk3-devel                              3.22.28-1                       OK
libgtk3_0                                  3.22.28-1                       OK
libgtksourceview2.0_0                      2.10.5-2                        OK
libgtkspell0                               2.0.16-1                        OK
libgts0.7_5                                20121130-1                      OK
libguile17                                 1.8.8-3                         OK
libguile2.0_22                             2.0.14-3                        OK
libgvc6                                    2.40.1-4                        OK
libharfbuzz-devel                          2.5.3-1                         OK
libharfbuzz-gobject0                       2.5.3-1                         OK
libharfbuzz-icu0                           2.5.3-1                         OK
libharfbuzz0                               2.5.3-1                         OK
libhdf5_10                                 1.8.20-1                        OK
libhdf5_101                                1.10.2-1                        OK
libhdf5_103                                1.10.5-1                        OK
libhdf5hl_10                               1.8.20-1                        OK
libhdf5hl_100                              1.10.5-1                        OK
libhogweed2                                2.7.1-1                         OK
libhogweed4                                3.4.1-1                         OK
libhunspell1.3_0                           1.3.3-1                         OK
libhunspell1.4_0                           1.4.1-1                         OK
libhunspell1.6_0                           1.6.1-1                         OK
libical1                                   1.0.1-1                         OK
libICE6                                    1.0.10-1                        OK
libiconv                                   1.14-3                          OK
libiconv-devel                             1.14-3                          OK
libiconv2                                  1.14-3                          OK
libicu56                                   56.1-1                          OK
libicu57                                   57.1-1                          OK
libicu58                                   58.2-1                          OK
libicu59                                   59.1-1                          OK
libicu60                                   60.2-1                          OK
libicu61                                   61.1-1                          OK
libicu62                                   62.1-1                          OK
libicu63                                   63.1-1                          OK
libicu64                                   64.2-1                          OK
libIDL2_0                                  0.8.14-2                        OK
libidn11                                   1.33-1                          OK
libidn2_0                                  2.2.0-1                         OK
libilmbase12                               2.2.0-1                         OK
libIlmImf22                                2.2.0-1                         OK
libimagequant0                             2.10.0-1                        OK
libinchi0                                  2.3.2-6                         OK
libintl-devel                              0.19.8.1-2                      OK
libintl8                                   0.19.8.1-2                      OK
libiodbc-devel                             3.52.8-2                        OK
libiodbc2                                  3.52.8-2                        OK
libisl13                                   0.14.1-1                        OK
libisl15                                   0.16.1-1                        OK
libjasper1                                 1.900.22-1                      OK
libjasper4                                 2.0.14-1                        OK
libjavascriptcoregtk1.0_0                  2.0.4-5                         OK
libjbig2                                   2.0-14                          OK
libjpeg-devel                              1.5.3-1                         OK
libjpeg8                                   1.5.3-1                         OK
libjson-c-common                           0.12-1                          OK
libjson-c2                                 0.12-1                          OK
libjson-glib1.0_0                          1.4.2-1                         OK
libjsoncpp19                               1.8.4-1                         OK
libk5crypto3                               1.15.2-2                        OK
libkadm5clnt_mit10                         1.14.4-1                        OK
libkadm5clnt_mit11                         1.15.2-2                        OK
libkadm5srv_mit10                          1.14.4-1                        OK
libkadm5srv_mit11                          1.15.2-2                        OK
libkdb5_8                                  1.15.2-2                        OK
libkdecore-common                          4.14.38-3                       OK
libkdecore5                                4.14.38-3                       OK
libkdegames-common                         14.12.3-2                       OK
libkdegames6                               14.12.3-2                       OK
libKF5Archive5                             5.43.0-1                        OK
libKF5Attica5                              5.43.0-1                        OK
libKF5Auth5                                5.43.0-1                        OK
libKF5Bookmarks5                           5.43.0-1                        OK
libKF5Codecs5                              5.43.0-1                        OK
libKF5Completion5                          5.43.0-1                        OK
libKF5Config5                              5.43.0-1                        OK
libKF5ConfigWidgets5                       5.43.0-1                        OK
libKF5CoreAddons5                          5.43.0-1                        OK
libKF5Crash5                               5.43.0-1                        OK
libKF5DBusAddons5                          5.43.0-1                        OK
libKF5Declarative5                         5.43.0-1                        OK
libKF5DNSSD5                               5.43.0-1                        OK
libKF5GlobalAccel5                         5.43.0-1                        OK
libKF5Gpgmepp5                             16.08.3-2                       OK
libKF5GuiAddons5                           5.43.0-1                        OK
libKF5I18n5                                5.43.0-1                        OK
libKF5IconThemes5                          5.43.0-1                        OK
libKF5ItemViews5                           5.43.0-1                        OK
libKF5JobWidgets5                          5.43.0-1                        OK
libKF5KDEGames-common                      17.12.3-1                       OK
libKF5KDEGames7                            17.12.3-1                       OK
libKF5KIO5                                 5.43.0-1                        OK
libKF5NewStuff5                            5.43.0-1                        OK
libKF5Notifications5                       5.43.0-1                        OK
libKF5Package5                             5.43.0-1                        OK
libKF5Service5                             5.43.0-1                        OK
libKF5Solid5                               5.43.0-1                        OK
libKF5Sonnet5                              5.43.0-1                        OK
libKF5TextWidgets5                         5.43.0-1                        OK
libKF5Wallet5                              5.43.0-1                        OK
libKF5WidgetsAddons5                       5.43.0-1                        OK
libKF5WindowSystem5                        5.43.0-1                        OK
libKF5XmlGui5                              5.43.0-1                        OK
libkpathsea6                               20190509-1                      OK
libkpim-common                             4.14.10-3                       OK
libkpim4                                   4.14.10-3                       OK
libkrad0                                   1.15.2-2                        OK
libkrb5-devel                              1.15.2-2                        OK
libkrb5_3                                  1.15.2-2                        OK
libkrb5support0                            1.15.2-2                        OK
liblapack0                                 3.8.0-1                         OK
libLASi1                                   1.1.1-2                         OK
liblcms2_2                                 2.9-1                           OK
libllvm3.8                                 3.8.1-1                         OK
libllvm3.9                                 3.9.1-1                         OK
libllvm4.0                                 4.0.1-1                         OK
libllvm5.0                                 5.0.1-1                         OK
libllvm8                                   8.0.1-1                         OK
liblrzip-devel                             0.631-1                         OK
liblrzip0                                  0.631-1                         OK
libltdl7                                   2.4.6-7                         OK
liblz4-devel                               1.7.5-1                         OK
liblz4_1                                   1.7.5-1                         OK
liblzma5                                   5.2.4-1                         OK
liblzo2-devel                              2.10-1                          OK
liblzo2_2                                  2.10-1                          OK
libm17n0                                   1.7.0-1                         OK
libMagickC++6_6                            6.9.5.7-2                       OK
libMagickC++6_8                            6.9.10.11-1                     OK
libMagickCore6_2                           6.9.5.7-2                       OK
libMagickCore6_5                           6.9.9.11-3                      OK
libMagickCore6_6                           6.9.10.11-1                     OK
libMagickWand6_2                           6.9.5.7-2                       OK
libMagickWand6_5                           6.9.9.11-3                      OK
libMagickWand6_6                           6.9.10.11-1                     OK
libmailutils-devel                         3.5-1                           OK
libmailutils-sieve-extensions              3.5-1                           OK
libmailutils5                              3.5-1                           OK
libmarisa0                                 0.2.4-4                         OK
libmcpp0                                   2.7.2-2                         OK
libming1                                   0.4.8-3                         OK
libminizip-devel                           1.2.11-1                        OK
libminizip1                                1.2.11-1                        OK
libmng2                                    2.0.3-1                         OK
libmpc3                                    1.1.0-1                         OK
libmpfr4                                   3.1.6-1p1                       OK
libmpfr6                                   4.0.2-1                         OK
libmspack0                                 0.8-1                           OK
libmysqlclient18                           10.1.30-1                       OK
libncursesw10                              6.1-1.20190727                  OK
libneon27                                  0.30.1-1                        OK
libnetcdf-devel                            4.7.3-1                         OK
libnetcdf-fortran-devel                    4.5.2-1                         OK
libnetcdf-fortran_6                        4.4.4-3                         OK
libnetcdf-fortran_7                        4.5.2-1                         OK
libnetcdf11                                4.4.1.1-1                       OK
libnetcdf13                                4.6.1-2                         OK
libnetcdf15                                4.7.3-1                         OK
libnettle4                                 2.7.1-1                         OK
libnettle6                                 3.4.1-1                         OK
libnghttp2_14                              1.37.0-1                        OK
libnotify4                                 0.7.7-1                         OK
libnsl2                                    1.2.0-1                         OK
libnspr4                                   4.21-1                          OK
libnss3                                    3.45-1                          OK
libobjc4                                   7.4.0-1                         OK
libogg0                                    1.3.1-1                         OK
libopenal1                                 1.18.2-1                        OK
libopenbabel4                              2.3.2-6                         OK
libopenjp2_7                               2.3.0-1                         OK
libopenjpeg1                               1.5.2-3                         OK
libopenldap2_4_2                           2.4.48-1                        OK
libORBit2_0                                2.14.19-2                       OK
liborc0.4_0                                0.4.28-1                        OK
libotf0                                    0.9.13-1                        OK
libp11-kit0                                0.23.15-1                       OK
libpagemaker-tools                         0.0.3-2                         OK
libpagemaker0.0-debuginfo                  0.0.3-2                         OK
libpagemaker0.0-devel                      0.0.3-2                         OK
libpagemaker0.0-doc                        0.0.3-2                         OK
libpagemaker0.0_0                          0.0.3-2                         OK
libpango1.0-devel                          1.40.14-1                       OK
libpango1.0_0                              1.40.14-1                       OK
libpaper-common                            1.1.24-2                        OK
libpaper1                                  1.1.24-2                        OK
libpathplan4                               2.40.1-4                        OK
libpcre-devel                              8.43-1                          OK
libpcre1                                   8.43-1                          OK
libpcre16_0                                8.43-1                          OK
libpcre2-posix2                            10.33-1                         OK
libpcre2_16_0                              10.33-1                         OK
libpcre2_32_0                              10.33-1                         OK
libpcre2_8_0                               10.33-1                         OK
libpcre32_0                                8.43-1                          OK
libpcrecpp0                                8.43-1                          OK
libpcreposix0                              8.43-1                          OK
libphonon4                                 4.9.1-2                         OK
libphonon4qt5_4                            4.9.1-2                         OK
libpipeline1                               1.5.1-1                         OK
libpixman1-devel                           0.38.4-1                        OK
libpixman1_0                               0.38.4-1                        OK
libpkgconf3                                1.6.0-1                         OK
libplotter2                                2.6-5                           OK
libpng-devel                               1.6.37-1                        OK
libpng16                                   1.6.37-1                        OK
libpng16-devel                             1.6.37-1                        OK
libpolly8                                  8.0.1-1                         OK
libpoppler-cpp0                            0.62.0-1                        OK
libpoppler-glib8                           0.62.0-1                        OK
libpoppler62                               0.45.0-2                        OK
libpoppler66                               0.52.0-2                        OK
libpoppler68                               0.57.0-1                        OK
libpoppler73                               0.62.0-1                        OK
libpopt-common                             1.16-2                          OK
libpopt0                                   1.16-2                          OK
libportaudio2                              19.20140130-3                   OK
libpotrace0                                1.15-1                          OK
libpq5                                     12.1-1                          OK
libprison0                                 1.1.0-1                         OK
libprocps-devel                            3.3.15-1                        OK
libprocps-ng4                              3.3.10-1                        OK
libprocps-ng5                              3.3.11-1                        OK
libprocps-ng6                              3.3.12-2                        OK
libprocps7                                 3.3.15-1                        OK
libproj12                                  4.9.3-2                         Incomplete
libproj13                                  5.2.0-1                         OK
libproj15                                  6.3.0-1                         OK
libproj9                                   4.9.2-1                         OK
libproxy1                                  0.4.14-2                        OK
libpsl5                                    0.21.0-1                        OK
libpstoedit0                               3.73-1                          OK
libptexenc1                                20190509-1                      OK
libpulse-simple0                           11.1-1                          OK
libpulse0                                  11.1-1                          OK
libqca2                                    2.1.3-1                         OK
libqhull_7                                 2019.1-1                        OK
libqimageblitz4                            0.0.6-1                         OK
libqjson0                                  0.8.1-1                         OK
libqpdf21                                  8.4.1-1                         OK
libqpdf26                                  9.1.0-1                         OK
libqqwing2                                 1.3.4-1                         OK
libqrencode3                               3.4.4-1                         OK
libqscintilla2-common                      2.10.2-1                        OK
libqscintilla2-qt5-common                  2.10.2-1                        OK
libqscintilla2_12                          2.9.3-2                         OK
libqscintilla2_qt4-common                  2.10.2-1                        OK
libqscintilla2_qt4_13                      2.10.2-1                        OK
libqscintilla2_qt5-common                  2.10.2-1                        OK
libqscintilla2_qt5_13                      2.10.2-1                        OK
libQt3Support4                             4.8.7-4                         OK
libQt53D5                                  5.9.4-1                         OK
libQt5Charts5                              5.9.4-1                         OK
libQt5Core-devel                           5.9.4-2                         OK
libQt5Core5                                5.9.4-2                         OK
libQt5DataVisualization5                   5.9.4-1                         OK
libQt5Designer5                            5.9.4-1                         OK
libQt5Gui-devel                            5.9.4-2                         OK
libQt5Gui5                                 5.9.4-2                         OK
libQt5Help-devel                           5.9.4-1                         OK
libQt5Help5                                5.9.4-1                         OK
libQt5Location5                            5.9.4-2                         OK
libQt5Multimedia5                          5.9.4-1                         OK
libQt5Positioning5                         5.9.4-2                         OK
libQt5Quick5                               5.9.4-1                         OK
libQt5Script5                              5.9.4-1                         OK
libQt5SerialPort5                          5.9.4-1                         OK
libQt5Sql-devel                            5.9.4-2                         OK
libQt5Sql5                                 5.9.4-2                         OK
libQt5Svg5                                 5.9.4-1                         OK
libQt5TextToSpeech5                        5.9.4-1                         OK
libQt5UiTools-devel                        5.9.4-1                         OK
libQt5UiTools5                             5.9.4-1                         OK
libQt5WebChannel5                          5.9.4-1                         OK
libQt5WebKit5                              5.9.3-0.3.20180115git           OK
libQt5WebSockets5                          5.9.4-1                         OK
libQt5X11Extras-devel                      5.9.4-1                         OK
libQt5X11Extras5                           5.9.4-1                         OK
libQt5XmlPatterns5                         5.9.4-1                         OK
libQtCore4                                 4.8.7-4                         OK
libQtCore4-devel                           4.8.7-4                         OK
libQtDBus4                                 4.8.7-4                         OK
libQtDeclarative4                          4.8.7-4                         OK
libQtDesigner4                             4.8.7-4                         OK
libQtGui4                                  4.8.7-4                         OK
libQtHelp4                                 4.8.7-4                         OK
libQtMultimedia4                           4.8.7-4                         OK
libQtNetwork4                              4.8.7-4                         OK
libQtOpenGL4                               4.8.7-4                         OK
libQtScript4                               4.8.7-4                         OK
libQtScriptTools4                          4.8.7-4                         OK
libQtSql4                                  4.8.7-4                         OK
libQtSvg4                                  4.8.7-4                         OK
libQtTest4                                 4.8.7-4                         OK
libQtWebKit4                               4.10.4-3                        OK
libQtXml4                                  4.8.7-4                         OK
libQtXmlPatterns4                          4.8.7-4                         OK
libquadmath0                               7.4.0-1                         OK
libquazip-devel                            0.6.2-1                         OK
libquazip-doc                              0.6.2-1                         OK
libquazip1                                 0.6.2-1                         OK
libqwt5                                    5.2.3-1                         OK
libqzeitgeist1                             0.8.0-2                         OK
libreadline7                               7.0.3-3                         OK
librest0.7_0                               0.8.1-1                         OK
librevenge0.0-devel                        0.0.4-2                         OK
librevenge0.0_0                            0.0.4-2                         OK
librhash0                                  1.3.9-1                         OK
librsvg2_2                                 2.40.20-1                       OK
libsasl2-devel                             2.1.27-1                        OK
libsasl2_3                                 2.1.27-1                        OK
libsecret1-devel                           0.18.5-1                        OK
libsecret1_0                               0.18.5-1                        OK
libserf1-devel                             1.3.9-1                         OK
libserf1_0                                 1.3.9-1                         OK
libsigsegv2                                2.10-2                          OK
libslang2                                  2.3.2-2                         OK
libSM6                                     1.2.3-1                         OK
libsmartcols1                              2.33.1-1                        OK
libsmokebase3                              4.14.3-1                        OK
libsmokekde3                               4.14.3-1                        OK
libsmokeqt3                                4.14.3-2                        OK
libsndfile1                                1.0.28-2                        OK
libsoup-gnome2.4_1                         2.60.3-1                        OK
libsoup2.4_1                               2.60.3-1                        OK
libspeechd2                                0.8.7-1                         OK
libsqlite3-devel                           3.30.0-1                        OK
libsqlite3_0                               3.30.0-1                        OK
libssh-common                              0.8.7-1                         OK
libssh2_1                                  1.7.0-1                         OK
libssh4                                    0.8.7-1                         OK
libssl-devel                               1.1.1d-1                        OK
libssl1.0                                  1.0.2t-1                        OK
libssl1.1                                  1.1.1d-1                        OK
libssp0                                    6.4.0-4                         OK
libstartup-notification1_0                 0.12-2                          OK
libstdc++6                                 7.4.0-1                         OK
libstreamanalyzer0                         0.7.8-5                         OK
libstreams0                                0.7.8-5                         OK
libsybdb5                                  1.00.37-1                       OK
libsynctex1                                20180918-1                      OK
libsynctex2                                20190509-1                      OK
libtasn1_6                                 4.14-1                          OK
libtdb1                                    1.3.18-1                        OK
libteckit0                                 2.5.9-1                         OK
libtexlua52_5                              20180918-1                      OK
libtexlua53_5                              20190509-1                      OK
libtexluajit2                              20190509-1                      OK
libthai0                                   0.1.26-1                        OK
libtiff6                                   4.0.9-1                         OK
libtirpc-common                            1.1.4-1                         OK
libtirpc3                                  1.1.4-1                         OK
libtxc_dxtn                                1.0.1-2                         OK
libunique1.0_0                             1.1.6-1                         OK
libunistring2                              0.9.10-1                        OK
libunwind-devel                            8.0.1-1                         OK
libunwind1                                 8.0.1-1                         OK
libusb0                                    1.2.6.0-2                       OK
libuuid-devel                              2.33.1-1                        OK
libuuid1                                   2.33.1-1                        OK
libuv1                                     1.32.0-1                        OK
libverto1                                  0.2.6-1                         OK
libvncserver0                              0.9.10-2                        OK
libvncserver1                              0.9.11-1                        OK
libvoikko1                                 3.8-1                           OK
libvorbis                                  1.3.6-1                         OK
libvorbis0                                 1.3.6-1                         OK
libvorbisenc2                              1.3.6-1                         OK
libvorbisfile3                             1.3.6-1                         OK
libvte9                                    0.28.2-6                        OK
libvtv0                                    5.4.0-1                         OK
libwebkitgtk1.0_0                          2.0.4-5                         OK
libwebp5                                   0.4.4-1                         OK
libwebp7                                   0.6.1-2                         OK
libwebpdemux2                              0.6.1-2                         OK
libwebpmux1                                0.4.4-1                         OK
libwebpmux3                                0.6.1-2                         OK
libWINGs3                                  0.95.8-2                        OK
libWMaker-devel                            0.95.8-2                        OK
libWMaker1                                 0.95.8-2                        OK
libwmf027                                  0.2.8.4-15                      OK
libwnck1_22                                2.30.7-2                        OK
libwrap0                                   7.6-26                          OK
libwraster5                                0.95.6-3                        OK
libwraster6                                0.95.8-2                        OK
libwsman-common                            2.6.5-1                         OK
libwsman1                                  2.6.5-1                         OK
libwsman_client4                           2.6.5-1                         OK
libwv1.2_4                                 1.2.9-2                         OK
libwx_baseu2.8_0                           2.8.12.1-7                      OK
libwx_gtk2u2.8-devel                       2.8.12.1-7                      OK
libwx_gtk2u2.8_0                           2.8.12.1-7                      OK
libX11-debuginfo                           1.6.8-1                         OK
libX11-devel                               1.6.8-1                         OK
libX11-doc                                 1.6.8-1                         OK
libX11-xcb-devel                           1.6.8-1                         OK
libX11-xcb1                                1.6.8-1                         OK
libX11_6                                   1.6.8-1                         OK
libXau-devel                               1.0.9-1                         OK
libXau6                                    1.0.9-1                         OK
libXaw3d8                                  1.6.3-1                         OK
libXaw7                                    1.0.13-1                        OK
libxcb-composite0                          1.13-1                          OK
libxcb-devel                               1.13-1                          OK
libxcb-dri2_0                              1.13-1                          OK
libxcb-ewmh2                               0.4.1-1                         OK
libxcb-glx-devel                           1.13-1                          OK
libxcb-glx0                                1.13-1                          OK
libxcb-icccm4                              0.4.1-1                         OK
libxcb-image0                              0.3.9-1                         OK
libxcb-keysyms1                            0.3.9-1                         OK
libxcb-randr0                              1.13-1                          OK
libxcb-render-devel                        1.13-1                          OK
libxcb-render-util0                        0.3.9-1                         OK
libxcb-render0                             1.13-1                          OK
libxcb-res0                                1.13-1                          OK
libxcb-shape0                              1.13-1                          OK
libxcb-shm-devel                           1.13-1                          OK
libxcb-shm0                                1.13-1                          OK
libxcb-sync1                               1.13-1                          OK
libxcb-util1                               0.3.9-1                         OK
libxcb-xfixes0                             1.13-1                          OK
libxcb-xinerama0                           1.13-1                          OK
libxcb-xkb1                                1.13-1                          OK
libxcb1                                    1.13-1                          OK
libXcomposite-devel                        0.4.5-1                         OK
libXcomposite1                             0.4.5-1                         OK
libXcursor-devel                           1.2.0-1                         OK
libXcursor1                                1.2.0-1                         OK
libXdamage-devel                           1.1.5-1                         OK
libXdamage1                                1.1.5-1                         OK
libXdmcp-devel                             1.1.3-1                         OK
libXdmcp6                                  1.1.3-1                         OK
libXext-devel                              1.3.4-1                         OK
libXext6                                   1.3.4-1                         OK
libxfce4util-common                        4.12.1-1                        OK
libxfce4util6                              4.10.1-1                        OK
libxfce4util7                              4.12.1-1                        OK
libxfconf0_2                               4.12.0-2                        OK
libXfixes-devel                            5.0.3-1                         OK
libXfixes3                                 5.0.3-1                         OK
libXfont-debuginfo                         1.5.4-1                         OK
libXfont-devel                             1.5.4-1                         OK
libXfont1                                  1.5.4-1                         OK
libXfont2_2                                2.0.4-1                         OK
libXft-devel                               2.3.3-1                         OK
libXft2                                    2.3.3-1                         OK
libXi-devel                                1.7.10-1                        OK
libXi6                                     1.7.10-1                        OK
libXinerama-devel                          1.1.4-1                         OK
libXinerama1                               1.1.4-1                         OK
libxkbcommon0                              0.8.0-1                         OK
libxkbfile1                                1.1.0-1                         OK
libxml2                                    2.9.9-2                         OK
libXmu6                                    1.1.3-1                         OK
libXmuu1                                   1.1.3-1                         OK
libXpm4                                    3.5.12-1                        OK
libXrandr-devel                            1.5.2-1                         OK
libXrandr2                                 1.5.2-1                         OK
libXrender-devel                           0.9.9-1                         OK
libXrender1                                0.9.9-1                         OK
libXRes1                                   1.2.0-1                         OK
libxslt                                    1.1.29-1                        OK
libXss1                                    1.2.3-1                         OK
libXt6                                     1.2.0-1                         OK
libXtst6                                   1.2.3-1                         OK
libyaml0_2                                 0.1.6-2                         OK
libzbar0                                   0.10-9                          OK
libzinnia0                                 0.06-10                         OK
libzip-debuginfo                           1.5.1-1                         OK
libzip-devel                               1.5.1-1                         OK
libzip-doc                                 1.5.1-1                         OK
libzip-tools                               1.5.1-1                         OK
libzip2                                    0.11.2-2                        OK
libzip5                                    1.5.1-1                         OK
libzzip-devel                              0.13.68-1                       OK
libzzip0.13                                0.13.68-1                       OK
login                                      1.13-1                          OK
lrzip                                      0.631-1                         OK
lrzip-debuginfo                            0.631-1                         OK
lua                                        5.3.5-1                         OK
luit                                       20130217-1                      OK
lxterminal                                 0.3.1-1                         OK
lxterminal-debuginfo                       0.3.1-1                         OK
lzip                                       1.19-1                          OK
lziprecover                                1.19-1                          OK
m17n-db                                    1.7.0-2                         OK
m4                                         1.4.18-1                        OK
mailutils                                  3.5-1                           OK
mailutils-comsatd                          3.5-1                           OK
mailutils-debuginfo                        3.5-1                           OK
mailutils-imap4d                           3.5-1                           OK
mailutils-mh                               3.5-1                           OK
mailutils-pop3d                            3.5-1                           OK
make                                       4.2.1-2                         OK
make-debuginfo                             4.2.1-2                         OK
makedepend                                 1.0.6-1                         OK
makedepend-debuginfo                       1.0.6-1                         OK
makepasswd                                 1.10-2                          OK
man-db                                     2.7.6.1-1                       OK
man-pages-posix                            2013-a-1                        OK
mariadb-common                             3.0.9-1                         OK
mcpp                                       2.7.2-2                         OK
mingw64-i686-binutils                      2.29.1.787c9873-1               OK
mingw64-i686-bzip2                         1.0.6-4                         OK
mingw64-i686-dbus                          1.10.22-1                       OK
mingw64-i686-expat                         2.2.2-1                         OK
mingw64-i686-freetds                       1.00.37-1                       OK
mingw64-i686-freetype2                     2.8.1-1                         OK
mingw64-i686-gcc-core                      7.4.0-1                         OK
mingw64-i686-gcc-debuginfo                 7.4.0-1                         OK
mingw64-i686-gcc-fortran                   7.4.0-1                         OK
mingw64-i686-gcc-g++                       7.4.0-1                         OK
mingw64-i686-gcc-objc                      7.4.0-1                         OK
mingw64-i686-gdbm                          1.12-1                          OK
mingw64-i686-gettext                       0.19.8.1-2                      OK
mingw64-i686-glib2.0                       2.54.3-1                        OK
mingw64-i686-gmp                           6.1.2-1                         OK
mingw64-i686-gnutls                        3.5.18-1                        OK
mingw64-i686-harfbuzz                      1.7.6-1                         OK
mingw64-i686-headers                       7.0.0-1                         OK
mingw64-i686-libffi                        3.2.1-1                         OK
mingw64-i686-libidn2                       2.0.4-1                         OK
mingw64-i686-libjpeg-turbo                 1.5.3-1                         OK
mingw64-i686-libpagemaker0.0               0.0.3-1                         OK
mingw64-i686-libpng                        1.6.34-1                        OK
mingw64-i686-librevenge0.0                 0.0.4-2                         OK
mingw64-i686-libtasn1                      4.13-1                          OK
mingw64-i686-libunistring                  0.9.6-1                         OK
mingw64-i686-libzip                        1.5.1-1                         OK
mingw64-i686-mariadb-connector-c           2.3.3-1                         OK
mingw64-i686-minizip                       1.2.11-1                        OK
mingw64-i686-nettle                        3.4-1                           OK
mingw64-i686-openssl                       1.0.2o-1                        OK
mingw64-i686-p11-kit                       0.23.10-1                       OK
mingw64-i686-pcre                          8.40-3                          OK
mingw64-i686-pcre2                         10.23-2                         OK
mingw64-i686-postgresql                    9.5.4-1                         OK
mingw64-i686-qt4-qmake                     4.8.7-1                         OK
mingw64-i686-qt4-qmake-debuginfo           4.8.7-1                         OK
mingw64-i686-qt5-base                      5.9.4-1                         OK
mingw64-i686-qt5-tools                     5.9.4-1                         OK
mingw64-i686-runtime                       7.0.0-1                         OK
mingw64-i686-sqlite3                       3.19.3-1                        OK
mingw64-i686-win-iconv                     0.0.6-2                         OK
mingw64-i686-windows-default-manifest      6.4-1                           OK
mingw64-i686-winpthreads                   7.0.0-1                         OK
mingw64-i686-zlib                          1.2.11-1                        OK
mingw64-i686-zziplib                       0.13.62-1                       OK
mingw64-x86_64-binutils                    2.29.1.787c9873-1               OK
mingw64-x86_64-bzip2                       1.0.6-4                         OK
mingw64-x86_64-gcc-core                    7.4.0-1                         OK
mingw64-x86_64-gcc-debuginfo               7.4.0-1                         OK
mingw64-x86_64-gcc-fortran                 7.4.0-1                         OK
mingw64-x86_64-gcc-g++                     7.4.0-1                         OK
mingw64-x86_64-gcc-objc                    7.4.0-1                         OK
mingw64-x86_64-gdbm                        1.12-1                          OK
mingw64-x86_64-gettext                     0.19.8.1-2                      OK
mingw64-x86_64-headers                     7.0.0-1                         OK
mingw64-x86_64-libpagemaker0.0             0.0.3-1                         OK
mingw64-x86_64-librevenge0.0               0.0.4-2                         OK
mingw64-x86_64-libzip                      1.5.1-1                         OK
mingw64-x86_64-minizip                     1.2.11-1                        OK
mingw64-x86_64-openssl                     1.0.2o-1                        OK
mingw64-x86_64-qt4-qmake                   4.8.7-1                         OK
mingw64-x86_64-qt4-qmake-debuginfo         4.8.7-1                         OK
mingw64-x86_64-runtime                     7.0.0-1                         OK
mingw64-x86_64-win-iconv                   0.0.6-2                         OK
mingw64-x86_64-windows-default-manifest    6.4-1                           OK
mingw64-x86_64-winpthreads                 7.0.0-1                         OK
mingw64-x86_64-zlib                        1.2.11-1                        OK
mingw64-x86_64-zziplib                     0.13.62-1                       OK
minizip                                    1.2.8-1                         OK
mintty                                     3.1.0-1                         OK
mutt                                       1.13.2-1                        OK
mutt-debuginfo                             1.13.2-1                        OK
mutter                                     3.22.3-1                        OK
mutter-debuginfo                           3.22.3-1                        OK
mutter-devel                               3.22.3-1                        OK
mutter-doc                                 3.14.4-1                        OK
mysql-common                               10.3.14-1                       OK
ncurses                                    6.1-1.20190727                  OK
neomutt                                    20191207-1                      OK
neomutt-debuginfo                          20191207-1                      OK
net-snmp-agent-libs                        5.7.3-1                         OK
net-snmp-libs                              5.7.3-1                         OK
netcdf-fortran                             4.4.4-1                         OK
netcdf-fortran-debuginfo                   4.5.2-1                         OK
nginx                                      1.14.2-1                        OK
nginx-mod_http_perl                        1.14.2-1                        OK
nmh                                        1.7.1-1                         OK
openldap-devel                             2.4.48-1                        OK
openssh                                    8.1p1-1                         OK
openssl                                    1.1.1d-1                        OK
openssl-perl                               1.1.1d-1                        OK
oxygen-icons                               15.04.3-1                       OK
p11-kit                                    0.23.15-1                       OK
p11-kit-trust                              0.23.15-1                       OK
p7zip                                      15.14.1-1                       OK
patch                                      2.7.4-1                         OK
patch-debuginfo                            2.7.4-1                         OK
patcher                                    0.0.20040521-1                  OK
patchutils                                 0.3.4-1                         OK
patchutils-debuginfo                       0.3.4-1                         OK
pbzip2                                     1.1.13-1                        OK
pcre                                       8.43-1                          OK
pcre2                                      10.33-1                         OK
pdfgrep                                    1.4.1-1                         OK
perl                                       5.26.3-2                        OK
perl-Algorithm-Diff                        1.1903-3                        OK
perl-Alien-wxWidgets                       0.69-1                          OK
perl-Archive-Extract                       0.80-2                          OK
perl-Archive-Zip                           1.67-1                          OK
perl-Authen-SASL                           2.16-3                          OK
perl-Authen-SASL-XS                        1.00-2                          OK
perl-Authen-SASL-XS-debuginfo              1.00-2                          OK
perl-autovivification                      0.18-1                          OK
perl-autovivification-debuginfo            0.18-1                          OK
perl-B-Generate                            1.56-1                          OK
perl-B-Generate-debuginfo                  1.56-1                          OK
perl-B-Hooks-EndOfScope                    0.24-1                          OK
perl-Barcode-ZBar                          0.10-9                          OK
perl-Business-ISBN                         3.004-2                         OK
perl-Business-ISBN-Data                    20140910.003-2                  OK
perl-Business-ISMN                         1.201-1                         OK
perl-Business-ISSN                         1.003-1                         OK
perl-Cairo                                 1.106-2                         OK
perl-Cairo-debuginfo                       1.106-2                         OK
perl-Cairo-GObject                         1.004-3                         OK
perl-Cairo-GObject-debuginfo               1.004-3                         OK
perl-Canary-Stability                      2013-1                          OK
perl-Capture-Tiny                          0.48-1                          OK
perl-Carp                                  1.38-2                          OK
perl-CGI                                   4.44-1                          OK
perl-Chemistry-OpenBabel                   2.3.2-6                         OK
perl-Class-Accessor                        0.51-1                          OK
perl-Class-Data-Inheritable                0.08-2                          OK
perl-Class-Inspector                       1.36-1                          OK
perl-Class-Singleton                       1.5-2                           OK
perl-Class-XSAccessor                      1.19-4                          OK
perl-Class-XSAccessor-debuginfo            1.19-4                          OK
perl-Clone                                 0.41-1                          OK
perl-Clone-debuginfo                       0.41-1                          OK
perl-common-sense                          3.74-2                          OK
perl-Compress-Bzip2                        2.26-2                          OK
perl-Compress-Bzip2-debuginfo              2.26-2                          OK
perl-Config-AutoConf                       0.317-1                         OK
perl-Config-Perl-V                         0.27-2                          OK
perl-Config-Tiny                           2.24-1                          OK
perl-CPAN-Changes                          0.400002-2                      OK
perl-CPAN-DistnameInfo                     0.12-6                          OK
perl-CPAN-Meta                             2.150010-2                      OK
perl-CPAN-Meta-Check                       0.014-2                         OK
perl-CPAN-Meta-Requirements                2.140-2                         OK
perl-CPAN-Meta-YAML                        0.018-2                         OK
perl-CPAN-Reporter                         1.2018-2                        OK
perl-CPAN-Testers-Report                   1.999003-3                      OK
perl-Cpanel-JSON-XS                        4.17-1                          OK
perl-Cpanel-JSON-XS-debuginfo              4.17-1                          OK
perl-Crypt-OpenSSL-Bignum                  0.09-1                          OK
perl-Crypt-OpenSSL-Bignum-debuginfo        0.09-1                          OK
perl-Crypt-OpenSSL-DSA                     0.19-2                          OK
perl-Crypt-OpenSSL-DSA-debuginfo           0.19-2                          OK
perl-Crypt-OpenSSL-EC                      1.31-2                          OK
perl-Crypt-OpenSSL-EC-debuginfo            1.31-2                          OK
perl-Crypt-OpenSSL-ECDSA                   0.08-3                          OK
perl-Crypt-OpenSSL-ECDSA-debuginfo         0.08-3                          OK
perl-Crypt-OpenSSL-Random                  0.15-1                          OK
perl-Crypt-OpenSSL-Random-debuginfo        0.15-1                          OK
perl-Crypt-OpenSSL-RSA                     0.31-1                          OK
perl-Crypt-OpenSSL-RSA-debuginfo           0.31-1                          OK
perl-Data-Alias                            1.20-2                          OK
perl-Data-Alias-debuginfo                  1.20-2                          OK
perl-Data-Compare                          1.27-1                          OK
perl-Data-Diver                            1.0101-4                        OK
perl-Data-Dump                             1.23-2                          OK
perl-Data-GUID                             0.049-2                         OK
perl-Data-OptList                          0.110-2                         OK
perl-Data-Uniqid                           0.12-2                          OK
perl-Data-UUID                             1.224-1                         OK
perl-Data-UUID-debuginfo                   1.224-1                         OK
perl-Date-Manip                            6.78-1                          OK
perl-Date-Simple                           3.03-3                          OK
perl-Date-Simple-debuginfo                 3.03-3                          OK
perl-DateTime                              1.51-1                          OK
perl-DateTime-Calendar-Julian              0.102-1                         OK
perl-DateTime-debuginfo                    1.51-1                          OK
perl-DateTime-Format-Builder               0.82-1                          OK
perl-DateTime-Format-Strptime              1.76-1                          OK
perl-DateTime-Locale                       1.25-1                          OK
perl-DateTime-TimeZone                     2.37-1                          OK
perl-DBD-mysql                             4.050-1                         OK
perl-DBD-mysql-debuginfo                   4.050-1                         OK
perl-DBD-SQLite                            1.64-1                          OK
perl-DBD-SQLite-debuginfo                  1.64-1                          OK
perl-DBI                                   1.642-1                         OK
perl-DBI-debuginfo                         1.642-1                         OK
perl-debuginfo                             5.26.3-2                        OK
perl-Devel-Autoflush                       0.06-3                          OK
perl-Devel-CheckLib                        1.14-1                          OK
perl-Devel-GlobalDestruction               0.14-2                          OK
perl-Devel-StackTrace                      2.04-1                          OK
perl-Devel-Symdump                         2.18-2                          OK
perl-Digest-BubbleBabble                   0.02-4                          OK
perl-Digest-GOST                           0.06-2                          OK
perl-Digest-GOST-debuginfo                 0.06-2                          OK
perl-Digest-HMAC                           1.03-6                          OK
perl-Digest-SHA                            6.02-1                          OK
perl-Digest-SHA-debuginfo                  6.02-1                          OK
perl-Digest-SHA1                           2.13-6                          OK
perl-Digest-SHA1-debuginfo                 2.13-6                          OK
perl-Dist-CheckConflicts                   0.11-3                          OK
perl-Encode-EUCJPASCII                     0.03-3                          OK
perl-Encode-EUCJPASCII-debuginfo           0.03-3                          OK
perl-Encode-HanExtra                       0.23-3                          OK
perl-Encode-HanExtra-debuginfo             0.23-3                          OK
perl-Encode-ISO2022                        0.04-4                          OK
perl-Encode-ISO2022-debuginfo              0.04-4                          OK
perl-Encode-JIS2K                          0.03-2                          OK
perl-Encode-JIS2K-debuginfo                0.03-2                          OK
perl-Encode-JISX0213                       0.04-2                          OK
perl-Encode-JISX0213-debuginfo             0.04-2                          OK
perl-Encode-Locale                         1.05-2                          OK
perl-Error                                 0.17028-1                       OK
perl-Eval-Closure                          0.14-2                          OK
perl-Exception-Class                       1.44-1                          OK
perl-Exporter-Tiny                         1.002001-1                      OK
perl-ExtUtils-CBuilder                     0.280231-1                      OK
perl-ExtUtils-Depends                      0.8000-1                        OK
perl-ExtUtils-F77                          1.23-1                          OK
perl-ExtUtils-Helpers                      0.026-2                         OK
perl-ExtUtils-LibBuilder                   0.08-2                          OK
perl-ExtUtils-MakeMaker                    7.38-1                          OK
perl-ExtUtils-PkgConfig                    1.16-2                          OK
perl-File-Copy-Recursive                   0.45-1                          OK
perl-File-Find-Object                      0.3.4-1                         OK
perl-File-Find-Object-Rule                 0.0311-1                        OK
perl-File-Find-Rule                        0.34-2                          OK
perl-File-HomeDir                          1.004-1                         OK
perl-File-Listing                          6.04-6                          OK
perl-File-pushd                            1.016-1                         OK
perl-File-Remove                           1.58-1                          OK
perl-File-ShareDir                         1.116-1                         OK
perl-File-Slurp                            9999.28-1                       OK
perl-File-Slurp-Tiny                       0.004-2                         OK
perl-File-Slurper                          0.012-1                         OK
perl-File-Which                            1.23-1                          OK
perl-Finance-Quote                         1.47-1                          OK
perl-Font-AFM                              1.20-2                          OK
perl-Font-TTF                              1.06-2                          OK
perl-GD                                    2.66-1                          OK
perl-GD-debuginfo                          2.66-1                          OK
perl-gdal                                  3.0.2-1                         OK
perl-Getopt-ArgvFile                       1.11-3                          OK
perl-gettext                               1.07-2                          OK
perl-gettext-debuginfo                     1.07-2                          OK
perl-Glib                                  1.326-1                         OK
perl-Glib-debuginfo                        1.326-1                         OK
perl-Glib-Object-Introspection             0.043-1                         OK
perl-Glib-Object-Introspection-debuginfo   0.043-1                         OK
perl-Gnome2                                1.046-2                         OK
perl-Gnome2-Canvas                         1.002-13                        OK
perl-Gnome2-Canvas-debuginfo               1.002-13                        OK
perl-Gnome2-debuginfo                      1.046-2                         OK
perl-Gnome2-GConf                          1.044-13                        OK
perl-Gnome2-GConf-debuginfo                1.044-13                        OK
perl-Gnome2-Rsvg                           0.11-3                          OK
perl-Gnome2-Rsvg-debuginfo                 0.11-3                          OK
perl-Gnome2-VFS                            1.083-1                         OK
perl-Gnome2-VFS-debuginfo                  1.083-1                         OK
perl-Gnome2-Vte                            0.11-3                          OK
perl-Gnome2-Vte-debuginfo                  0.11-3                          OK
perl-Gnome2-Wnck                           0.16-13                         OK
perl-Gnome2-Wnck-debuginfo                 0.16-13                         OK
perl-Graphics-Magick                       1.3.34-1                        OK
perl-GStreamer                             0.20-1                          OK
perl-GStreamer-debuginfo                   0.20-1                          OK
perl-GStreamer-Interfaces                  0.06-2                          OK
perl-GStreamer-Interfaces-debuginfo        0.06-2                          OK
perl-GStreamer1                            0.003-2                         OK
perl-Gtk2                                  1.24992-1                       OK
perl-Gtk2-debuginfo                        1.24992-1                       OK
perl-Gtk2-GladeXML                         1.007-13                        OK
perl-Gtk2-GladeXML-debuginfo               1.007-13                        OK
perl-Gtk2-Notify                           0.05-13                         OK
perl-Gtk2-Notify-debuginfo                 0.05-13                         OK
perl-Gtk2-SourceView2                      0.10-4                          OK
perl-Gtk2-SourceView2-debuginfo            0.10-4                          OK
perl-Gtk2-Spell                            1.04-3                          OK
perl-Gtk2-Spell-debuginfo                  1.04-3                          OK
perl-Gtk2-Unique                           0.05-4                          OK
perl-Gtk2-Unique-debuginfo                 0.05-4                          OK
perl-Gtk2-WebKit                           0.09-3                          OK
perl-Gtk2-WebKit-debuginfo                 0.09-3                          OK
perl-Gtk3                                  0.032-1                         OK
perl-gv                                    2.40.1-4                        OK
perl-HTML-Element-Extended                 1.18-2                          OK
perl-HTML-Format                           2.16-3                          OK
perl-HTML-Formatter                        2.16-3                          OK
perl-HTML-Parser                           3.72-2                          OK
perl-HTML-Parser-debuginfo                 3.72-2                          OK
perl-HTML-TableExtract                     2.15-2                          OK
perl-HTML-Tagset                           3.20-6                          OK
perl-HTML-Tree                             5.07-1                          OK
perl-HTTP-Cookies                          6.06-1                          OK
perl-HTTP-Daemon                           6.06-1                          OK
perl-HTTP-Date                             6.03-1                          OK
perl-HTTP-Message                          6.18-1                          OK
perl-HTTP-Negotiate                        6.01-6                          OK
perl-HTTP-Tiny                             0.076-1                         OK
perl-Image-Magick                          6.9.10.11-1                     OK
perl-inc-latest                            0.500-2                         OK
perl-Inline                                0.83-1                          OK
perl-Inline-Files                          0.71-1                          OK
perl-IO-CaptureOutput                      1.1105-1                        OK
perl-IO-HTML                               1.001-3                         OK
perl-IO-Prompt-Tiny                        0.003-3                         OK
perl-IO-Socket-INET6                       2.72-3                          OK
perl-IO-Socket-IP                          0.39-2                          OK
perl-IO-Socket-SSL                         2.066-1                         OK
perl-IO-String                             1.08-6                          OK
perl-IO-stringy                            2.111-2                         OK
perl-IO-Tty                                1.12-3                          OK
perl-IO-Tty-debuginfo                      1.12-3                          OK
perl-IPC-Cmd                               1.04-1                          OK
perl-IPC-Run                               20180523.0-1                    OK
perl-IPC-Run3                              0.048-3                         OK
perl-JSON                                  4.02-1                          OK
perl-JSON-MaybeXS                          1.004000-1                      OK
perl-JSON-PP                               4.04-1                          OK
perl-JSON-XS                               3.04-2                          OK
perl-JSON-XS-debuginfo                     3.04-2                          OK
perl-KDE4                                  4.14.3-2                        OK
perl-KDE4-debuginfo                        4.14.3-2                        OK
perl-Lchown                                1.01-2                          OK
perl-Lchown-debuginfo                      1.01-2                          OK
perl-libwww-perl                           6.41-1                          OK
perl-libxml-perl                           0.08-6                          OK
perl-Lingua-Translit                       0.28-1                          OK
perl-List-AllUtils                         0.15-1                          OK
perl-List-MoreUtils                        0.428-1                         OK
perl-List-MoreUtils-debuginfo              0.426-1                         OK
perl-List-MoreUtils-XS                     0.428-1                         OK
perl-List-SomeUtils                        0.58-1                          OK
perl-List-SomeUtils-XS                     0.58-1                          OK
perl-List-UtilsBy                          0.11-1                          OK
perl-Log-Log4perl                          1.49-2                          OK
perl-LWP-MediaTypes                        6.04-1                          OK
perl-LWP-Online                            1.08-2                          OK
perl-LWP-Protocol-https                    6.07-2                          OK
perl-Mail-Box                              3.008-1                         OK
perl-Mail-Box-Parser-C                     3.009-1                         OK
perl-Mail-Box-Parser-C-debuginfo           3.009-1                         OK
perl-Mail-IMAPClient                       3.42-1                          OK
perl-Mail-Message                          3.008-1                         OK
perl-Mail-Transport                        3.004-1                         OK
perl-MailTools                             2.21-1                          OK
perl-marisa                                0.2.4-4                         OK
perl-Math-Int64                            0.54-2                          OK
perl-Math-Int64-debuginfo                  0.54-2                          OK
perl-Metabase-Client-Simple                0.012-2                         OK
perl-Metabase-Fact                         0.025-2                         OK
perl-MIME-Base32                           1.303-2                         OK
perl-MIME-Charset                          1.012.2-2                       OK
perl-MIME-tools                            5.508-2                         OK
perl-MIME-Types                            2.17-1                          OK
perl-ming                                  0.4.8-3                         OK
perl-Module-Build                          0.4229-1                        OK
perl-Module-Implementation                 0.09-2                          OK
perl-Module-Load-Conditional               0.68-2                          OK
perl-Module-Metadata                       1.000037-1                      OK
perl-Module-Pluggable                      5.2-2                           OK
perl-Module-Runtime                        0.016-1                         OK
perl-Module-ScanDeps                       1.27-1                          OK
perl-Module-Signature                      0.83-1                          OK
perl-Mojolicious                           8.26-1                          OK
perl-Mozilla-CA                            20180117-1                      OK
perl-MRO-Compat                            0.13-2                          OK
perl-namespace-autoclean                   0.29-1                          OK
perl-namespace-clean                       0.27-2                          OK
perl-Net-DNS                               1.21-1                          OK
perl-Net-DNS-SEC                           1.14-1                          OK
perl-Net-HTTP                              6.19-1                          OK
perl-Net-IP                                1.26-4                          OK
perl-Net-Libproxy                          0.4.14-2                        OK
perl-Net-SMTP-SSL                          1.04-2                          OK
perl-net-snmp                              5.7.3-1                         OK
perl-Net-SSLeay                            1.88-1                          OK
perl-Net-SSLeay-debuginfo                  1.88-1                          OK
perl-Net-XMPP                              1.05-2                          OK
perl-Number-Compare                        0.03-6                          OK
perl-Object-Realize-Later                  0.21-1                          OK
perl-OpenGL                                0.7000-1                        OK
perl-OpenGL-debuginfo                      0.7000-1                        OK
perl-openwsman                             2.6.5-1                         OK
perl-Package-Stash                         0.38-1                          OK
perl-Package-Stash-XS                      0.29-1                          OK
perl-PadWalker                             2.3-1                           OK
perl-PadWalker-debuginfo                   2.3-1                           OK
perl-Pango                                 1.227-2                         OK
perl-Pango-debuginfo                       1.227-2                         OK
perl-PAR                                   1.016-1                         OK
perl-PAR-Dist                              0.49-4                          OK
perl-PAR-Packer                            1.047-1                         OK
perl-Params-Util                           1.07-6                          OK
perl-Params-Validate                       1.29-2                          OK
perl-Params-Validate-debuginfo             1.29-2                          OK
perl-Params-ValidationCompiler             0.30-1                          OK
perl-Parse-RecDescent                      1.967015-2                      OK
perl-Path-Class                            0.37-2                          OK
perl-Pod-Coverage                          0.23-4                          OK
perl-Pod-Escapes                           1.07-3                          OK
perl-Pod-Simple                            3.35-2                          OK
perl-POD2-Base                             0.043-3                         OK
perl-Probe-Perl                            0.03-4                          OK
perl-Proc-ProcessTable                     0.59-1                          OK
perl-Proc-ProcessTable-debuginfo           0.59-1                          OK
perl-Qt4                                   4.14.3-2                        OK
perl-Qt4-debuginfo                         4.14.3-2                        OK
perl-Readonly                              2.05-2                          OK
perl-Readonly-XS                           1.05-5                          OK
perl-Readonly-XS-debuginfo                 1.05-5                          OK
perl-Regexp-Common                         2017060201-2                    OK
perl-Role-Tiny                             2.001004-1                      OK
perl-Scalar-List-Utils                     1.53-1                          OK
perl-Scalar-List-Utils-debuginfo           1.53-1                          OK
perl-SGMLSpm                               1.03ii-5                        OK
perl-Socket                                2.029-1                         OK
perl-Socket-debuginfo                      2.029-1                         OK
perl-Socket6                               0.29-1                          OK
perl-Socket6-debuginfo                     0.29-1                          OK
perl-Sort-Key                              1.33-2                          OK
perl-Specio                                0.44-1                          OK
perl-Spiffy                                0.46-3                          OK
perl-Stow                                  2.3.1-2                         OK
perl-Sub-Exporter                          0.987-4                         OK
perl-Sub-Exporter-Progressive              0.001013-2                      OK
perl-Sub-Identify                          0.14-2                          OK
perl-Sub-Identify-debuginfo                0.14-2                          OK
perl-Sub-Install                           0.928-3                         OK
perl-Sub-Quote                             2.006006-1                      OK
perl-Sub-Uplevel                           0.2800-2                        OK
perl-SUPER                                 1.20190531-1                    OK
perl-Tee                                   0.14-6                          OK
perl-Term-ReadLine-Gnu                     1.36-1                          OK
perl-Term-ReadLine-Gnu-debuginfo           1.36-1                          OK
perl-Term-ReadLine-Perl                    1.0303-6                        OK
perl-TermReadKey                           2.38-1                          OK
perl-TermReadKey-debuginfo                 2.38-1                          OK
perl-Test-Base                             0.89-1                          OK
perl-Test-CPAN-Meta                        0.25-2                          OK
perl-Test-Deep                             1.128-1                         OK
perl-Test-Differences                      0.67-1                          OK
perl-Test-EOL                              2.00-2                          OK
perl-Test-Exception                        0.43-2                          OK
perl-Test-Fatal                            0.014-3                         OK
perl-Test-Harness                          3.42-1                          OK
perl-Test-LeakTrace                        0.16-2                          OK
perl-Test-LeakTrace-debuginfo              0.16-2                          OK
perl-Test-MockModule                       0.171.0-1                       OK
perl-Test-NoTabs                           2.02-1                          OK
perl-Test-NoWarnings                       1.04-5                          OK
perl-Test-Pod                              1.52-1                          OK
perl-Test-Pod-Coverage                     1.10-3                          OK
perl-Test-Reporter                         1.62-3                          OK
perl-Test-Reporter-Transport-Metabase      1.999010-2                      OK
perl-Test-Requires                         0.10-2                          OK
perl-Test-Script                           1.26-1                          OK
perl-Test-Simple                           1.302168-1                      OK
perl-Test-TrailingSpace                    0.0302-1                        OK
perl-Test-Warn                             0.36-1                          OK
perl-Test-Warnings                         0.027-1                         OK
perl-Test-Without-Module                   0.20-2                          OK
perl-Test-YAML                             1.07-1                          OK
perl-Text-BibTeX                           0.88-1                          OK
perl-Text-BibTeX-debuginfo                 0.88-1                          OK
perl-Text-CharWidth                        0.04-4                          OK
perl-Text-CharWidth-debuginfo              0.04-4                          OK
perl-Text-CSV                              2.00-1                          OK
perl-Text-CSV_XS                           1.40-1                          OK
perl-Text-CSV_XS-debuginfo                 1.40-1                          OK
perl-Text-Diff                             1.45-2                          OK
perl-Text-Glob                             0.11-2                          OK
perl-Text-Roman                            3.5-2                           OK
perl-Text-Template                         1.58-1                          OK
perl-Text-WrapI18N                         0.06-4                          OK
perl-Tie-Cycle                             1.225-2                         OK
perl-TimeDate                              2.30-3                          OK
perl-Tk                                    804.034-1                       OK
perl-Tk-Canvas-GradientColor               1.06-2                          OK
perl-Tk-ColoredButton                      1.05-3                          OK
perl-Tk-debuginfo                          804.034-1                       OK
perl-Tk-EntryCheck                         0.04-3                          OK
perl-Tk-Getopt                             0.51-1                          OK
perl-Tk-Pod                                0.9943-1                        OK
perl-Try-Tiny                              0.30-1                          OK
perl-Types-Serialiser                      1.0-4                           OK
perl-Unicode-Collate                       1.27-1                          OK
perl-Unicode-Collate-debuginfo             1.27-1                          OK
perl-Unicode-LineBreak                     2019.001-1                      OK
perl-Unicode-LineBreak-debuginfo           2019.001-1                      OK
perl-Unicode-Normalize                     1.26-1                          OK
perl-Unicode-Normalize-debuginfo           1.25-2                          OK
perl-URI                                   1.76-1                          OK
perl-User-Identity                         0.99-1                          OK
perl-Variable-Magic                        0.62-1                          OK
perl-Win32                                 0.52-2                          OK
perl-Win32-API                             0.84-2                          OK
perl-Win32-API-debuginfo                   0.84-2                          OK
perl-Win32-debuginfo                       0.52-2                          OK
perl-Win32-GUI                             1.14-1                          OK
perl-Win32-GUI-debuginfo                   1.14-1                          OK
perl-WWW-Curl                              4.17-3                          OK
perl-WWW-Curl-debuginfo                    4.17-3                          OK
perl-WWW-RobotRules                        6.02-6                          OK
perl-Wx                                    0.9932-1                        OK
perl-Wx-build                              0.9932-1                        OK
perl-Wx-debuginfo                          0.9932-1                        OK
perl-Xfce4-Xfconf                          4.12.0-2                        OK
perl-XML-DOM                               1.46-2                          OK
perl-XML-LibXML                            2.0134-2                        OK
perl-XML-LibXML-debuginfo                  2.0134-2                        OK
perl-XML-LibXML-Simple                     0.99-1                          OK
perl-XML-LibXSLT                           1.96-1                          OK
perl-XML-LibXSLT-debuginfo                 1.96-1                          OK
perl-XML-NamespaceSupport                  1.12-2                          OK
perl-XML-Parser                            2.46-1                          OK
perl-XML-Parser-debuginfo                  2.46-1                          OK
perl-XML-RegExp                            0.04-3                          OK
perl-XML-SAX                               1.02-1                          OK
perl-XML-SAX-Base                          1.09-2                          OK
perl-XML-SAX-Expat                         0.51-3                          OK
perl-XML-Simple                            2.25-1                          OK
perl-XML-Stream                            1.24-2                          OK
perl-XML-Writer                            0.625-2                         OK
perl-XML-XPath                             1.44-1                          OK
perl-XSLoader                              0.24-2                          OK
perl-YAML                                  1.29-1                          OK
perl-YAML-LibYAML                          0.80-1                          OK
perl-YAML-LibYAML-debuginfo                0.80-1                          OK
perl-YAML-Tiny                             1.73-1                          OK
perl-zinnia                                0.06-10                         OK
perl_autorebase                            5.26.3-2                        OK
perl_base                                  5.26.3-2                        OK
perl_manpages                              5.26.3-2                        OK
perl_pods                                  5.26.3-2                        OK
php                                        7.3.7-1                         OK
php-zip                                    7.3.7-1                         OK
pkg-config                                 1.6.0-1                         OK
pkgconf                                    1.6.0-1                         OK
poppler-data                               0.4.8-1                         OK
postgresql                                 12.1-1                          OK
postgresql-client                          12.1-1                          OK
postgresql-plperl                          12.1-1                          OK
preview-latex                              12.1-1                          OK
procps-debuginfo                           3.2.8-5                         OK
procps-ng                                  3.3.15-1                        OK
procps-ng-debuginfo                        3.3.15-1                        OK
pstotext                                   1.9-1                           OK
publicsuffix-list-dafsa                    20190717-1                      OK
putty                                      0.69-1                          OK
putty-debuginfo                            0.69-1                          OK
pwget                                      2015.0927+git36776ae-1          OK
python-chm                                 0.8.4-12                        OK
python-fastimport                          0.9.2-2                         OK
python-gi-common                           3.26.1-2                        OK
python-pip-wheel                           19.2.3-1                        OK
python-pyqt4-common                        4.12.1-1                        OK
python-pyqt4-debuginfo                     4.12.1-1                        OK
python-pyqt4-devel                         4.12.1-1                        OK
python-pyqt5-common                        5.9.2-1                         OK
python-pyqt5-debuginfo                     5.9.2-1                         OK
python-pyqt5-devel                         5.9.2-1                         OK
python-pyqt5-qt3d-common                   5.9.2-1                         OK
python-pyqt5-qt3d-debuginfo                5.9.2-1                         OK
python-pyqt5-qt3d-devel                    5.9.2-1                         OK
python-pyqt5-qtchart-common                5.9.2-1                         OK
python-pyqt5-qtchart-debuginfo             5.9.2-1                         OK
python-pyqt5-qtchart-devel                 5.9.2-1                         OK
python-pyqt5-qtdatavisualization-common    5.9.2-1                         OK
python-pyqt5-qtdatavisualization-debuginfo 5.9.2-1                         OK
python-pyqt5-qtdatavisualization-devel     5.9.2-1                         OK
python-setuptools-wheel                    41.2.0-1                        OK
python2                                    2.7.16-1                        OK
python2-pyqt4                              4.12.1-1                        OK
python2-pyqt4-qsci                         2.10.2-1                        OK
python2-pyqt5                              5.9.2-1                         OK
python2-pyqt5-qsci                         2.10.2-1                        OK
python2-pyqt5-qt3d                         5.9.2-1                         OK
python2-pyqt5-qtchart                      5.9.2-1                         OK
python2-pyqt5-qtdatavisualization          5.9.2-1                         OK
python2-sip                                4.19.6-1                        OK
python27                                   2.7.16-1                        OK
python27-bsddb3                            6.2.6-1                         OK
python27-cairo                             1.18.1-1                        OK
python27-cffi                              1.12.2-1                        OK
python27-chardet                           3.0.4-1                         OK
python27-clang                             8.0.1-1                         OK
python27-dbus                              1.2.8-1                         OK
python27-gi                                3.26.1-2                        OK
python27-imaging                           5.4.1-1                         OK
python27-numpy                             1.16.2-1                        OK
python27-olefile                           0.46-1                          OK
python27-ply                               3.11-1                          OK
python27-pycparser                         2.19-1                          OK
python27-pygments                          2.3.1-1                         OK
python27-setuptools                        41.2.0-1                        OK
python3                                    3.6.8-1                         OK
python3-pyqt4                              4.12.1-1                        OK
python3-pyqt4-qsci                         2.10.2-1                        OK
python3-pyqt5                              5.9.2-1                         OK
python3-pyqt5-qsci                         2.10.2-1                        OK
python3-pyqt5-qt3d                         5.9.2-1                         OK
python3-pyqt5-qtchart                      5.9.2-1                         OK
python3-pyqt5-qtdatavisualization          5.9.2-1                         OK
python3-sip                                4.19.6-1                        OK
python36                                   3.6.9-1                         OK
python36-cairo                             1.18.1-1                        OK
python36-cffi                              1.12.2-1                        OK
python36-chardet                           3.0.4-1                         OK
python36-dbus                              1.2.8-1                         OK
python36-gi                                3.26.1-2                        OK
python36-imaging                           5.4.1-1                         OK
python36-olefile                           0.46-1                          OK
python36-ply                               3.11-1                          OK
python36-pycparser                         2.19-1                          OK
python36-pygments                          2.3.1-1                         OK
qpdf                                       9.1.0-1                         OK
qt5-linguist-tools                         5.9.4-1                         OK
qt5-x11extras-debuginfo                    5.9.4-1                         OK
qt5-x11extras-doc                          5.9.4-1                         OK
quazip-debuginfo                           0.6.2-1                         OK
rebase                                     4.4.4-2                         OK
rsh                                        0.17-2                          OK
rsh-debuginfo                              0.17-2                          OK
rsh-server                                 0.17-2                          OK
rsync                                      3.1.2-1                         OK
ruby                                       2.6.4-1                         OK
ruby-builder                               3.2.3-1                         OK
ruby-did_you_mean                          1.2.2-1                         OK
ruby-minitest                              5.10.3-1                        OK
ruby-minitest4                             5.10.3-1                        OK
ruby-net-telnet                            0.2.0-1                         OK
ruby-net-telnet-doc                        0.2.0-1                         OK
ruby-rake                                  12.3.2-1                        OK
ruby-rdoc                                  6.1.2-1                         OK
rubygems                                   3.0.3-1                         OK
run                                        1.3.4-2                         OK
rzip                                       2.1-1                           OK
scintilla-win32                            3.6.6-1                         OK
sed                                        4.4-1                           OK
setxkbmap                                  1.3.2-1                         OK
sgml-common                                0.6.3-3                         OK
shared-mime-info                           1.8-1                           OK
showfont-debuginfo                         1.0.4-1                         OK
sound-theme-freedesktop                    0.8-1                           OK
soundfont-fluid-gm                         3.1-1                           OK
soundfont-fluid-gs                         3.1-1                           OK
soundfont-fluid-lite-patches               3.1-1                           OK
soundfont-utils                            0.4-1                           OK
speech-dispatcher                          0.8.7-1                         OK
splitpatch                                 0.0+20131223+gitb13d810-1       OK
subversion                                 1.13.0-1                        OK
subversion-debuginfo                       1.13.0-1                        OK
subversion-devel                           1.13.0-1                        OK
subversion-gnome                           1.13.0-1                        OK
subversion-httpd                           1.13.0-1                        OK
subversion-perl                            1.13.0-1                        OK
subversion-python                          1.13.0-1                        OK
subversion-ruby                            1.13.0-1                        OK
subversion-tools                           1.13.0-1                        OK
sudoku                                     1.0.1-2                         OK
suomi-malaga                               1.19-1                          OK
svn-load                                   1.3-1                           OK
svn_load_dirs                              1.9.2-2                         OK
t1lib-x11                                  5.1.2-13                        OK
t1lib5                                     5.1.2-13                        OK
t1libx5                                    5.1.2-13                        OK
t1utils                                    1.39-1                          OK
tar                                        1.29-1                          OK
tcl                                        8.6.8-1                         OK
tcl-tk                                     8.6.8-1                         OK
terminfo                                   6.1-1.20190727                  OK
terminfo-extra                             6.1-1.20190727                  OK
texinfo                                    6.7-1                           OK
texinfo-tex                                6.7-1                           OK
texlive                                    20190509-1                      OK
texlive-collection-basic                   20190509-1                      OK
texlive-collection-bibtexextra             20190913-1                      OK
texlive-collection-binextra                20190509-1                      OK
texlive-collection-fontsrecommended        20190509-1                      OK
texlive-collection-fontutils               20190509-1                      OK
texlive-collection-langenglish             20190509-1                      OK
texlive-collection-latex                   20190509-1                      OK
texlive-collection-latexextra              20190509-1                      OK
texlive-collection-latexrecommended        20190509-1                      OK
texlive-collection-mathscience             20190509-1                      OK
texlive-collection-pictures                20190913-1                      OK
tftp                                       5.2-1                           OK
tftp-server                                5.2-1                           OK
tiff                                       4.0.9-1                         OK
tin                                        2.4.3-1                         OK
transfig                                   3.2.7a-1                        OK
ttf2pt1                                    3.4.4-1                         OK
twm                                        1.0.10-1                        OK
tzcode                                     2019c-1                         OK
tzdata                                     2019c-1                         OK
unifont-debuginfo                          8.0.01-1                        OK
unifont-fonts                              8.0.01-1                        OK
unifont-viewer                             8.0.01-1                        OK
unzip                                      6.0-17                          OK
unzip-debuginfo                            6.0-17                          OK
urw-base35-fonts                           20170801-5                      OK
urw-base35-fonts-legacy                    20170801-5                      OK
util-linux                                 2.33.1-1                        OK
vala-libsecret1                            0.18.5-1                        OK
vim-minimal                                8.1.1772-1                      OK
w32api-headers                             7.0.0-1                         OK
w32api-runtime                             7.0.0-1                         OK
w3m                                        0.5.3-3                         OK
wcd                                        6.0.3-1                         OK
wcd-debuginfo                              6.0.3-1                         OK
weechat                                    2.7-1                           OK
weechat-perl                               2.7-1                           OK
wget                                       1.19.1-2                        OK
wget-debuginfo                             1.19.1-2                        OK
which                                      2.20-2                          OK
whois                                      5.4.0-1                         OK
WindowMaker                                0.95.8-2                        OK
windows-default-manifest                   6.4-1                           OK
wordview                                   0.95-1                          OK
wv                                         1.2.9-2                         OK
x11perf                                    1.6.1-1                         OK
x11perf-debuginfo                          1.6.1-1                         OK
x11vnc                                     0.9.14-2                        OK
x11vnc-debuginfo                           0.9.14-2                        OK
xauth                                      1.1-1                           OK
xcursor-themes                             1.0.6-1                         OK
xdg-user-dirs                              0.16-1                          OK
xf86-video-dummy                           0.3.8-1                         OK
xf86-video-nested                          0.1.0-8.20160719git             OK
xfconfd                                    4.12.0-2                        OK
xfontsel                                   1.0.6-1                         OK
xfs                                        1.2.0-1                         OK
xhost                                      1.0.8-1                         OK
xhost-debuginfo                            1.0.8-1                         OK
xhtml2ps                                   1.0b7-2                         OK
xinit                                      1.4.1-1                         OK
xinit-debuginfo                            1.4.1-1                         OK
xkbcomp                                    1.4.2-1                         OK
xkeyboard-config                           2.23.1-1                        OK
xlsx2csv                                   0.11+20120814+gitf54ab78-2      OK
xman                                       1.1.5-1                         OK
xmh                                        1.0.3-1                         OK
xmlto                                      0.0.26-1                        OK
xmodmap                                    1.0.10-1                        OK
xorg-cf-files                              1.0.6-1                         OK
xorg-server                                1.20.5-3                        OK
xorg-server-common                         1.20.5-3                        OK
xorg-x11-fonts-cyrillic                    7.5-4                           OK
xorg-x11-fonts-dpi100                      7.5-4                           OK
xorg-x11-fonts-dpi75                       7.5-4                           OK
xorg-x11-fonts-ethiopic                    7.5-4                           OK
xorg-x11-fonts-misc                        7.5-4                           OK
xorg-x11-fonts-Type1                       7.5-4                           OK
xorgproto                                  2019.1-1                        OK
xpdf                                       4.02-1                          OK
xpr                                        1.0.5-1                         OK
xrdb                                       1.2.0-1                         OK
xterm                                      348-1                           OK
xterm-debuginfo                            348-1                           OK
xwd                                        1.0.7-1                         OK
xwin-xdg-menu                              20170321-1                      OK
xz                                         5.2.4-1                         OK
zenity                                     3.26.0-1                        OK
zip                                        3.0-12                          OK
zip-debuginfo                              3.0-12                          OK
zlib-devel                                 1.2.11-1                        OK
zlib0                                      1.2.11-1                        OK
znc                                        1.7.5-1                         OK
znc-perl                                   1.7.5-1                         OK
zziplib                                    0.13.68-1                       OK
zziplib-debuginfo                          0.13.68-1                       OK

[-- Attachment #3: Type: text/plain, Size: 219 bytes --]


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: cin and read(*,*) not waiting for kbd input in gdb
  2020-01-16 21:03 cin and read(*,*) not waiting for kbd input in gdb Rockefeller, Harry
@ 2020-01-17 15:40 ` Jon Turney
  2020-01-17 17:34   ` Rockefeller, Harry
  0 siblings, 1 reply; 7+ messages in thread
From: Jon Turney @ 2020-01-17 15:40 UTC (permalink / raw)
  To: The Cygwin Mailing List; +Cc: Rockefeller, Harry

On 16/01/2020 21:02, Rockefeller, Harry wrote:
> Both the Fortran and cpp used to work correctly when run in gdb.

Thanks for reporting this problem.

I assume this means that this worked with gdb-8.1.1-1, but not with 
gdb-8.2.1-1 (Made available for testing 2019-03-21 [1], promoted to 
current 2020-01-07 [2])

Firstly, can I suggest that if a working gdb is important to you, you 
try test versions when they are available.  Wider testing helps me make 
good releases of gdb.

Secondly, can you try the recently made test release of gdb-8.3.1-1 [3], 
to see if this behaves differently?  If that doesn't help, you can 
downgrade to 8.1.1-1 for the moment...

[1] https://cygwin.com/ml/cygwin-announce/2019-03/msg00032.html
[2] https://cygwin.com/ml/cygwin/2020-01/msg00064.html
[3] https://cygwin.com/ml/cygwin-announce/2019-12/msg00033.html

> FWIW, Both Fortran and cpp work correctly, stopping for keyboard input, when run outside of gdb.
> 
> But now, code simply doesn't stop to take keyboard input inside gdb.
> 
> I've tried simplifying cpp problem with simple code.
> e.g.
> #include <iostream> // to enable terminal printout
> #include <cmath>    // pow function
> int main() {
>    float request_time_to_run(void);
>    float a=0.0f;
>    a = request_time_to_run();
>    printf ("a is %f\n", a);
> }
> float request_time_to_run() {
>    float tm = 0.0;        // Time duration (sec)
>    std::string ans = "";  // interactive answer for time duration
>    std::cout << "Supply the equivalent of runtime in seconds. \n";
>    std::cout << "Note: time=0 will stop main. \n";
>    std::cin >> ans;
>    if ( (int)(ans[0]) < 48 || (int)(ans[0] > 57) ) {
>      tm = 1.0;
>    } else {
>      int i;
>      int j = 0;
>      tm = 0.0;
>      for (i=ans.length() - 1; i>=0; i--) {
>        tm += ((int)(ans[i]) - 48) * pow( 10, j++);
>      }
>    }
>    return tm;
> }
> 

I'm not able to reproduce this problem.  Perhaps you can provide a 
similar transcript showing the steps to reproduce?

> $ gdb rockefeller.exe
> GNU gdb (GDB) (Cygwin 8.2.1-1) 8.2.1
> Copyright (C) 2018 Free Software Foundation, Inc.
> License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
> This is free software: you are free to change and redistribute it.
> There is NO WARRANTY, to the extent permitted by law.
> Type "show copying" and "show warranty" for details.
> This GDB was configured as "x86_64-pc-cygwin".
> Type "show configuration" for configuration details.
> For bug reporting instructions, please see:
> <http://www.gnu.org/software/gdb/bugs/>.
> Find the GDB manual and other documentation resources online at:
>     <http://www.gnu.org/software/gdb/documentation/>.
> 
> For help, type "help".
> Type "apropos word" to search for commands related to "word"...
> Reading symbols from rockefeller.exe...done.
> (gdb) b request_time_to_run()
> Breakpoint 1 at 0x1004010e8: file rockefeller.cpp, line 10.
> (gdb) r
> Starting program: /wip/rockefeller.exe
> 
> Thread 1 "rockefeller" hit Breakpoint 1, request_time_to_run () at rockefeller.cpp:10
> 10        float tm = 0.0;        // Time duration (sec)
> (gdb) n
> 11        std::string ans = "";  // interactive answer for time duration
> (gdb) n
> 12        std::cout << "Supply the equivalent of runtime in seconds. \n";
> (gdb) n
> Supply the equivalent of runtime in seconds.
> 13        std::cout << "Note: time=0 will stop main. \n";
> (gdb) n
> Note: time=0 will stop main.
> 14        std::cin >> ans;
> (gdb) n
> 1
> 15        if ( (int)(ans[0]) < 48 || (int)(ans[0] > 57) ) {
> (gdb) n
> 19          int j = 0;
> (gdb) c
> Continuing.
> a is 1.000000
> [Inferior 1 (process 12660) exited normally]


> But, simple stuff does run correctly in gdb stopping for terminal input at
>    std::cin >> ans;
> FWIW, for simple cpp above neither the cout nor the cin works directly (not running in gdb).

Although not related to gdb, that would be a serious cygwin bug.


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 7+ messages in thread

* RE: cin and read(*,*) not waiting for kbd input in gdb
  2020-01-17 15:40 ` Jon Turney
@ 2020-01-17 17:34   ` Rockefeller, Harry
  2020-01-21 21:58     ` Rockefeller, Harry
  0 siblings, 1 reply; 7+ messages in thread
From: Rockefeller, Harry @ 2020-01-17 17:34 UTC (permalink / raw)
  To: Jon Turney, The Cygwin Mailing List

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="utf-8", Size: 5270 bytes --]

>>-----Original Message-----
>>From: Jon Turney <jon.turney@dronecode.org.uk>
>Sent: Friday, January 17, 2020 9:40 AM
>To: The Cygwin Mailing List <cygwin@cygwin.com>
>Cc: Rockefeller, Harry <Harry.Rockefeller@flightsafety.com>
>Subject: Re: cin and read(*,*) not waiting for kbd input in gdb
>EXTERNAL EMAIL: STOP and verify sender address, links, and attachments before taking action.
>On 16/01/2020 21:02, Rockefeller, Harry wrote:
>> Both the Fortran and cpp used to work correctly when run in gdb.
>
>Thanks for reporting this problem.
>
>I assume this means that this worked with gdb-8.1.1-1, but not with
>gdb-8.2.1-1 (Made available for testing 2019-03-21 [1], promoted to current 2020-01-07 [2])
>
>Firstly, can I suggest that if a working gdb is important to you, you try test versions when they are available.  Wider testing helps me make good releases of gdb.
>Secondly, can you try the recently made test release of gdb-8.3.1-1 [3], to see if this behaves differently?  If that doesn't help, you can downgrade to 8.1.1-1 for the moment...

I certainly plan to do that as soon as problem(s) are identified.

>[1] https://cygwin.com/ml/cygwin-announce/2019-03/msg00032.html
>[2] https://cygwin.com/ml/cygwin/2020-01/msg00064.html
>[3] https://cygwin.com/ml/cygwin-announce/2019-12/msg00033.html
>
>> FWIW, Both Fortran and cpp work correctly, stopping for keyboard input, when run outside of gdb.
>>
>> But now, code simply doesn't stop to take keyboard input inside gdb.
>>
>> [C++ test code omitted for brevity]

>I'm not able to reproduce this problem.  Perhaps you can provide a similar transcript showing the steps to reproduce?

I see that when I ran it I also had a few lines like these:
[New Thread 6188.0x1e54].
Since I develop mostly for "hard" real time, my default boot is a Win7 with RTX.
I rebooted my pc with the Win7 alone (no RTX) and the stdin does work as you show below.
I am working with my software support staff to find out if anything changed recently in my PC boot stuff.

>> $ gdb rockefeller.exe
>> GNU gdb (GDB) (Cygwin 8.2.1-1) 8.2.1
>> Copyright (C) 2018 Free Software Foundation, Inc.
>> License GPLv3+: GNU GPL version 3 or later
>> <http://gnu.org/licenses/gpl.html>
>> This is free software: you are free to change and redistribute it.
>> There is NO WARRANTY, to the extent permitted by law.
>> Type "show copying" and "show warranty" for details.
>> This GDB was configured as "x86_64-pc-cygwin".
>> Type "show configuration" for configuration details.
>> For bug reporting instructions, please see:
>> <http://www.gnu.org/software/gdb/bugs/>.
>> Find the GDB manual and other documentation resources online at:
>>     <http://www.gnu.org/software/gdb/documentation/>.
>>
>> For help, type "help".
>> Type "apropos word" to search for commands related to "word"...
>> Reading symbols from rockefeller.exe...done.
>> (gdb) b request_time_to_run()
>> Breakpoint 1 at 0x1004010e8: file rockefeller.cpp, line 10.
>> (gdb) r
>> Starting program: /wip/rockefeller.exe
>>
>> Thread 1 "rockefeller" hit Breakpoint 1, request_time_to_run () at rockefeller.cpp:10
>> 10        float tm = 0.0;        // Time duration (sec)
>> (gdb) n
>> 11        std::string ans = "";  // interactive answer for time duration
>> (gdb) n
>> 12        std::cout << "Supply the equivalent of runtime in seconds. \n";
>> (gdb) n
>> Supply the equivalent of runtime in seconds.
>> 13        std::cout << "Note: time=0 will stop main. \n";
>> (gdb) n
>> Note: time=0 will stop main.
>> 14        std::cin >> ans;
>> (gdb) n
>> 1
>> 15        if ( (int)(ans[0]) < 48 || (int)(ans[0] > 57) ) {
>> (gdb) n
>> 19          int j = 0;
>> (gdb) c
>> Continuing.
>> a is 1.000000
>> [Inferior 1 (process 12660) exited normally]


>> But, simple stuff does run correctly in gdb stopping for terminal input at
>>    std::cin >> ans;
>> FWIW, for simple cpp above neither the cout nor the cin works directly (not running in gdb).

>Although not related to gdb, that would be a serious cygwin bug.

I am still in the Win7 only boot on my PC ...  no RTX

More on this last problem.  This time using Fortran.
Test code:
      program test
      implicit none
      real    cycle_time_preset /0.0/ ! (seconds)
      real    cycle_length /0.0/      ! (seconds)
      do
         if (cycle_time_preset.le.0.0) then
            write(*,*)'Supply the equivalent of run time in seconds.'
            write(*,"('(Note: a negative run time will stop run): ',$)")
            read(*,*) cycle_length
         else
            cycle_length = cycle_time_preset
         end if
         if (cycle_length .lt. 0.0) stop 'normal termination'
      end do
      stop
      end

$ /usr/bin/gfortran   -g -ffree-form -ffree-line-length-none -Wunused -ffpe-trap=invalid,zero,overflow -o test.exe test.f

harryr@HARRYR-PC ~/
$ test.exe

$
Neither standard output nor input works.
FWIW, running in gdb both standard input and output work.


\x03B‹KCB”\x1c›Ø›\x19[H\x1c™\^[ܝ\x1cΈ\b\b\b\b\b\b\x1a\x1d\x1d\x1c\x0e‹ËØÞYÝÚ[‹˜ÛÛKÜ\x1c›Ø›\x19[\Ëš\x1d^[[\x03B‘TNˆ\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\x1a\x1d\x1d\x1c\x0e‹ËØÞYÝÚ[‹˜ÛÛKÙ˜\KÃB‘^[ØÝ[Y[\x18]\x1a[ÛŽˆ\b\b\b\b\b\b\b\b\x1a\x1d\x1d\x1c\x0e‹ËØÞYÝÚ[‹˜ÛÛKÙ^[ØÜËš\x1d^[[\x03B•[œÝXœØÜšX™H\x1a[™›Îˆ\b\b\b\b\b\x1a\x1d\x1d\x1c\x0e‹ËØÞYÝÚ[‹˜ÛÛKÛ[\vÈÝ[œÝXœØÜšX™K\Ú[\^[\x19CBƒB

^ permalink raw reply	[flat|nested] 7+ messages in thread

* RE: cin and read(*,*) not waiting for kbd input in gdb
  2020-01-17 17:34   ` Rockefeller, Harry
@ 2020-01-21 21:58     ` Rockefeller, Harry
  2020-01-27 16:46       ` Rockefeller, Harry
  0 siblings, 1 reply; 7+ messages in thread
From: Rockefeller, Harry @ 2020-01-21 21:58 UTC (permalink / raw)
  To: The Cygwin Mailing List


>-----Original Message-----
> From: cygwin-owner@cygwin.com <cygwin-owner@cygwin.com> On Behalf Of Rockefeller, Harry
>Sent: Friday, January 17, 2020 11:35 AM
>To: Jon Turney <jon.turney@dronecode.org.uk>; The Cygwin Mailing List <cygwin@cygwin.com>
>Subject: RE: cin and read(*,*) not waiting for kbd input in gdb

>>>-----Original Message-----
>>>From: Jon Turney <jon.turney@dronecode.org.uk>
>>Sent: Friday, January 17, 2020 9:40 AM
>>To: The Cygwin Mailing List <cygwin@cygwin.com>
>>Cc: Rockefeller, Harry <Harry.Rockefeller@flightsafety.com>
>>Subject: Re: cin and read(*,*) not waiting for kbd input in gdb
>>EXTERNAL EMAIL: STOP and verify sender address, links, and attachments before taking action.
>>On 16/01/2020 21:02, Rockefeller, Harry wrote:
>>> Both the Fortran and cpp used to work correctly when run in gdb.
>>
>>Thanks for reporting this problem.
>>
>>I assume this means that this worked with gdb-8.1.1-1, but not with
>>gdb-8.2.1-1 (Made available for testing 2019-03-21 [1], promoted to
>>current 2020-01-07 [2])
>>
>>Firstly, can I suggest that if a working gdb is important to you, you try test versions when they are available.  Wider testing helps me make good releases of gdb.
>>Secondly, can you try the recently made test release of gdb-8.3.1-1 [3], to see if this behaves differently?  If that doesn't help, you can downgrade to 8.1.1-1 for the moment...

>I certainly plan to do that as soon as problem(s) are identified.

>>[1] https://cygwin.com/ml/cygwin-announce/2019-03/msg00032.html
>>[2] https://cygwin.com/ml/cygwin/2020-01/msg00064.html
>>[3] https://cygwin.com/ml/cygwin-announce/2019-12/msg00033.html
>>
>>> FWIW, Both Fortran and cpp work correctly, stopping for keyboard input, when run outside of gdb.
>>>
>>> But now, code simply doesn't stop to take keyboard input inside gdb.
>>>
>>> [C++ test code omitted for brevity]

>>I'm not able to reproduce this problem.  Perhaps you can provide a similar transcript showing the steps to reproduce?

>I see that when I ran it I also had a few lines like these:
>[New Thread 6188.0x1e54].
>Since I develop mostly for "hard" real time, my default boot is a Win7 with RTX.
>I rebooted my pc with the Win7 alone (no RTX) and the stdin does work as you show below.
>I am working with my software support staff to find out if anything changed recently in my PC boot stuff.

>>> $ gdb rockefeller.exe
>>> GNU gdb (GDB) (Cygwin 8.2.1-1) 8.2.1
>>> Copyright (C) 2018 Free Software Foundation, Inc.
>>> License GPLv3+: GNU GPL version 3 or later
>>> <http://gnu.org/licenses/gpl.html>
>>> This is free software: you are free to change and redistribute it.
>>> There is NO WARRANTY, to the extent permitted by law.
>>> Type "show copying" and "show warranty" for details.
>>> This GDB was configured as "x86_64-pc-cygwin".
>>> Type "show configuration" for configuration details.
>>> For bug reporting instructions, please see:
>>> <http://www.gnu.org/software/gdb/bugs/>.
>>> Find the GDB manual and other documentation resources online at:
>>>     <http://www.gnu.org/software/gdb/documentation/>.
>>>
>>> For help, type "help".
>>> Type "apropos word" to search for commands related to "word"...
>>> Reading symbols from rockefeller.exe...done.
>>> (gdb) b request_time_to_run()
>>> Breakpoint 1 at 0x1004010e8: file rockefeller.cpp, line 10.
>>> (gdb) r
>>> Starting program: /wip/rockefeller.exe
>>>
>>> Thread 1 "rockefeller" hit Breakpoint 1, request_time_to_run () at rockefeller.cpp:10
>>> 10        float tm = 0.0;        // Time duration (sec)
>>> (gdb) n
>>> 11        std::string ans = "";  // interactive answer for time duration
>>> (gdb) n
>>> 12        std::cout << "Supply the equivalent of runtime in seconds. \n";
>>> (gdb) n
>>> Supply the equivalent of runtime in seconds.
>>> 13        std::cout << "Note: time=0 will stop main. \n";
>>> (gdb) n
>>> Note: time=0 will stop main.
>>> 14        std::cin >> ans;
>>> (gdb) n
>>> 1
>>> 15        if ( (int)(ans[0]) < 48 || (int)(ans[0] > 57) ) {
>>> (gdb) n
>>> 19          int j = 0;
>>> (gdb) c
>>> Continuing.
>>> a is 1.000000
>>> [Inferior 1 (process 12660) exited normally]


>>> But, simple stuff does run correctly in gdb stopping for terminal input at
>>>    std::cin >> ans;
>>> FWIW, for simple cpp above neither the cout nor the cin works directly (not running in gdb).

>>Although not related to gdb, that would be a serious cygwin bug.

>I am still in the Win7 only boot on my PC ...  no RTX

>More on this last problem.  This time using Fortran.
>Test code:
  >    program test
  >    implicit none
   >   real    cycle_time_preset /0.0/ ! (seconds)
    >  real    cycle_length /0.0/      ! (seconds)
     > do
      >   if (cycle_time_preset.le.0.0) then
       >     write(*,*)'Supply the equivalent of run time in seconds.'
        >    write(*,"('(Note: a negative run time will stop run): ',$)")
         >   read(*,*) cycle_length
         >else
          >  cycle_length = cycle_time_preset
         >end if
         >if (cycle_length .lt. 0.0) stop 'normal termination'
      >end do
      >stop
      >end

>$ /usr/bin/gfortran   -g -ffree-form -ffree-line-length-none -Wunused -ffpe-trap=invalid,zero,overflow -o test.exe test.f

>harryr@HARRYR-PC ~/
>$ test.exe
>
>$
>Neither standard output nor input works.
>FWIW, running in gdb both standard input and output work.

Following your test I do not have cin wait for kbd input whenever a breakpoint is set.
In fact, if I run 'disa 1' to disable the breakpoint and then just 'run'
(to restart the program from the beginning) then
the program does pause for my keyboard input.
This happens in both my Win 7 and Win 7 - RTX OS boots.
This happens in both gdb 8.2.1-1 and 8.3.1-1.  It does not happen with
Gdb version 8.1.1-1.

Egg on my face now: never mind the stuff about cin and cout
Not working when run directly.  This was my error.
'gdb test.exe' ran the local test.exe, but just 'test.exe' ran /usr/bin/test.
I should have been running './test.exe'.

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple


^ permalink raw reply	[flat|nested] 7+ messages in thread

* RE: cin and read(*,*) not waiting for kbd input in gdb
  2020-01-21 21:58     ` Rockefeller, Harry
@ 2020-01-27 16:46       ` Rockefeller, Harry
  2020-01-28 13:28         ` Jon Turney
  0 siblings, 1 reply; 7+ messages in thread
From: Rockefeller, Harry @ 2020-01-27 16:46 UTC (permalink / raw)
  To: The Cygwin Mailing List

[-- Attachment #1: Type: text/plain, Size: 4716 bytes --]

[snip]
>>>I'm not able to reproduce this problem.  Perhaps you can provide a similar transcript showing the steps to reproduce?
[snip]
>>Test code:
 > >    program test
  >>    implicit none
   >>   real    cycle_time_preset /0.0/ ! (seconds)
    >>  real    cycle_length /0.0/      ! (seconds)
     >> do
      >>   if (cycle_time_preset.le.0.0) then
       >>     write(*,*)'Supply the equivalent of run time in seconds.'
        >>    write(*,"('(Note: a negative run time will stop run): ',$)")
         >>   read(*,*) cycle_length
         >>else
          >>  cycle_length = cycle_time_preset
         >>end if
         >>if (cycle_length .lt. 0.0) stop 'normal termination'
      >>end do
      >>stop
      >>end

>>$ /usr/bin/gfortran   -g -ffree-form -ffree-line-length-none -Wunused -ffpe-trap=invalid,zero,overflow -o test.exe test.f
[snip]
>Following your test I do not have cin wait for kbd input whenever a breakpoint is set.
>In fact, if I run 'disa 1' to disable the breakpoint and then just 'run'
>(to restart the program from the beginning) then the program does pause for my keyboard input.
>This happens in both my Win 7 and Win 7 - RTX OS boots.
>This happens in both gdb 8.2.1-1 and 8.3.1-1.  It does not happen with Gdb version 8.1.1-1.
[snip]

I don't know if this is a gdb or a Cygwin implementation of gdb that is a problem.
Since I can go back to gdb version 8.1.1-1 this is not a problem for me now.
Here is a test case using the Fortran source above:

$ gfortran -g test1.f -o test1.exe

harryr@HARRYR-PC ~/d62sim/Excel
$ gdb test1
GNU gdb (GDB) (Cygwin 8.3.1-1) 8.3.1
Copyright (C) 2019 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.
Type "show copying" and "show warranty" for details.
This GDB was configured as "x86_64-pc-cygwin".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
<http://www.gnu.org/software/gdb/bugs/>.
Find the GDB manual and other documentation resources online at:
    <http://www.gnu.org/software/gdb/documentation/>.

For help, type "help".
Type "apropos word" to search for commands related to "word"...
Reading symbols from test1...
(gdb) b test1.f:9
Breakpoint 1 at 0x100401140: file test1.f, line 9.
(gdb) r
Starting program: /cygdrive/c/Users/harryr/d62sim/Excel/test1
[New Thread 7696.0x2a9c]
[New Thread 7696.0xf0c]
[New Thread 7696.0x22f8]
 Supply the equivalent of real time test in seconds.
(Note: a negative test length will stop run):
Thread 1 "test1" hit Breakpoint 1, test1 () at test1.f:9
9                read(*,*) cycle_length
(gdb) b unix.c:271
Breakpoint 2 at 0x3df9bb3c0: file /usr/src/debug/gcc-7.4.0-1/libgfortran/io/unix.c, line 272.
(gdb) c
Continuing.

Thread 1 "test1" hit Breakpoint 2, _gfortrani_flush_if_preconnected (s=0x80004e300) at /usr/src/debug/gcc-7.4.0-1/libgfortran/io/unix.c:272
272     {
(gdb) s
275       fd = ((unix_stream *) s)->fd;
(gdb)
276       if (fd == STDIN_FILENO)
(gdb)
277         fflush (stdin);
(gdb)
__getreent () at /usr/src/debug/cygwin-3.1.2-1/winsup/cygwin/thread.cc:89
89        return &_my_tls.local_clib;
(gdb)
NtCurrentTeb () at /usr/src/debug/cygwin-3.1.2-1/winsup/cygwin/thread.cc:89
89        return &_my_tls.local_clib;
(gdb)
__readgsqword (Offset=48) at /usr/x86_64-pc-cygwin/sys-root/usr/include/w32api/psdk_inc/intrin-impl.h:714
714     /usr/x86_64-pc-cygwin/sys-root/usr/include/w32api/psdk_inc/intrin-impl.h: No such file or directory.
(gdb)
__getreent () at /usr/src/debug/cygwin-3.1.2-1/winsup/cygwin/thread.cc:89
89        return &_my_tls.local_clib;
(gdb)
90      }
(gdb)
_gfortrani_flush_if_preconnected (s=<optimized out>) at /usr/src/debug/gcc-7.4.0-1/libgfortran/io/unix.c:282
282     }
(gdb)
277         fflush (stdin);
(gdb)
/wip/cygport-git/gdb/gdb-8.3.1-1.x86_64/src/gdb-8.3.1/gdb/infrun.c:2602: internal-error: void resume_1(gdb_signal): Assertion `pc_in_thread_step_range (pc, tp)' failed.
A problem internal to GDB has been detected,
further debugging may prove unreliable.
Quit this debugging session? (y or n)y

This is a bug, please report it.  For instructions, see:
<http://www.gnu.org/software/gdb/bugs/>.

/wip/cygport-git/gdb/gdb-8.3.1-1.x86_64/src/gdb-8.3.1/gdb/infrun.c:2602: internal-error: void resume_1(gdb_signal): Assertion `pc_in_thread_step_range (pc, tp)' failed.
A problem internal to GDB has been detected,
further debugging may prove unreliable.
Create a core file of GDB? (y or n) y
Aborted (core dumped)


[-- Attachment #2: gdb.exe.stackdump --]
[-- Type: application/octet-stream, Size: 1993 bytes --]

Stack trace:
Frame        Function    Args
000FFFFAF70  00180061979 (00000000000, 00000010A4C, 001801758FA, 000FFFFDE50)
000FFFFDE50  0018006393C (00800B71C90, 00800000000, 00000000280, 00000000000)
000FFFFB690  0018013CF37 (001800D25CC, 00000000000, 0B5E6171FFB, 00000000000)
0018031DC50  00180163324 (0001B23A1BB, 001008ED762, 233B6DE79C954B3E, 00000000059)
0018031DC50  0018013952B (00000000000, 00180116DB5, 000FFFFB910, 0018031DC50)
0018031DC50  0018013985F (001006C8646, FFFFFFFFFFFFFFFF, 001008EDA30, FFFFFFFFFFFFFFFF)
0018031DC50  001006C60BA (00800BA9668, 00000000017, 00000000002, 001008EE170)
0018031DC50  001006C9035 (00000000000, 00800340D70, 00100844280, 000FFFFBB38)
00000000001  001006C91DE (00100890B47, 00000000000, 233B6DE700000000, 000FFFFBB38)
00000000001  0010049262A (0080080A530, 00000000000, 00100895710, 00100891E18)
00000000001  00100572410 (001005710A4, 008013E9C30, 000FFFFC8A0, 00000000120)
00100844280  00100572E37 (00100695D9A, 00000000000, 00180199C87, 500000000000101)
0018031DC50  00100573E14 (00000000000, 00000000000, 00000000000, 00000000000)
00000000000  00100576859 (00000000000, 000FFFFFFFF, 00000000000, 00000000000)
000FFFFC570  0010057A648 (00000000000, 0018012FF3E, 00000000000, 000FFFFC7AC)
0018031DC50  0010057B982 (00100491069, 000FFFFC9C8, 0018031DC50, 00100844280)
000FFFFCA90  0010051A54C (233B6DE79C954B3E, 00800057380, 00000000001, 0010047EC60)
000FFFFCA90  0010051A676 (001006A2520, 00000000000, 00000000000, 00100844280)
000FFFFCA90  00100597E9F (00100000000, 000FFFFC94C, 0018015CDB0, 000FFFFCAD8)
000FFFFCA90  00100598FFD (001803A0318, 00180394828, 000FFFFCC70, 00000000002)
000FFFFCCD0  001007F6739 (00000000020, 30001000000FF00, 0018004A7BA, 00000E30000)
000FFFFCCD0  0018004A826 (00000000000, 00000000000, 00000000000, 00000000000)
00000000000  00180048353 (00000000000, 00000000000, 00000000000, 00000000000)
000FFFFFFF0  00180048404 (00000000000, 00000000000, 00000000000, 00000000000)
End of stack trace

[-- Attachment #3: Type: text/plain, Size: 219 bytes --]


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: cin and read(*,*) not waiting for kbd input in gdb
  2020-01-27 16:46       ` Rockefeller, Harry
@ 2020-01-28 13:28         ` Jon Turney
       [not found]           ` <2c4e575b182d46bba28e9fd688a0c9e7@vsrv060ex01.ssd.fsi.com>
  0 siblings, 1 reply; 7+ messages in thread
From: Jon Turney @ 2020-01-28 13:28 UTC (permalink / raw)
  To: The Cygwin Mailing List; +Cc: Rockefeller, Harry

On 27/01/2020 16:44, Rockefeller, Harry wrote:
> I don't know if this is a gdb or a Cygwin implementation of gdb that is a problem.
> Since I can go back to gdb version 8.1.1-1 this is not a problem for me now.
> Here is a test case using the Fortran source above:
> 
> $ gfortran -g test1.f -o test1.exe
> 
> harryr@HARRYR-PC ~/d62sim/Excel
> $ gdb test1
> GNU gdb (GDB) (Cygwin 8.3.1-1) 8.3.1
[...]
> (gdb)
> 277         fflush (stdin);
> (gdb)
> /wip/cygport-git/gdb/gdb-8.3.1-1.x86_64/src/gdb-8.3.1/gdb/infrun.c:2602: internal-error: void resume_1(gdb_signal): Assertion `pc_in_thread_step_range (pc, tp)' failed.
> A problem internal to GDB has been detected,
> further debugging may prove unreliable.
> Quit this debugging session? (y or n)y

Thanks for reporting this problem, and the reproduction steps.

I can reproduce this, but this doesn't seem to be a regression as I can 
also reproduce it with 8.1.1-1 (and with 7.9.1-1).

On a brief investigation this seems to be related to trying to step 
through an import stub.

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: cin and read(*,*) not waiting for kbd input in gdb
       [not found]           ` <2c4e575b182d46bba28e9fd688a0c9e7@vsrv060ex01.ssd.fsi.com>
@ 2020-01-29 13:07             ` Jon Turney
  0 siblings, 0 replies; 7+ messages in thread
From: Jon Turney @ 2020-01-29 13:07 UTC (permalink / raw)
  To: The Cygwin Mailing List; +Cc: Rockefeller, Harry

On 28/01/2020 15:40, Rockefeller, Harry wrote:
> Since you and I appear to be the only ones interested in this particular problem I brought this off the
> Cygwin list, at least for now.

Please don't do this.

https://cygwin.com/problems.html#personal-email

> You are correct, and I am able to reproduce this myself as well using gdb 8.1.1-1.
> In gdb 8.1.1-1 here is the same test case with stdin running correctly using a continue after the breakpoint that caused the gdb internal error before. > Thread 1 "test1" hit Breakpoint 1, test1 () at test1.f:9
> 9                read(*,*) cycle_length
> Breakpoint 2 at 0x3df9bb3e0: file /usr/src/debug/gcc-7.4.0-1/libgfortran/io/unix.c, line 277.
> (gdb) c
> Continuing.
> 
> Thread 1 "test1" hit Breakpoint 2, _gfortrani_flush_if_preconnected (s=0x80004e300) at /usr/src/debug/gcc-7.4.0-1/libgfortran/io/unix.c:277
> 277         fflush (stdin);
> (gdb) c
> Continuing.
> -1
> STOP normal termination
> [Thread 8904.0x2f34 exited with code 0]
> [Thread 8904.0x1e78 exited with code 0]
> [Inferior 1 (process 8904) exited normally]
> (gdb)
> 
> Now, reloading gdb 8.2.1-1:

Again, I don't seem to be able to reproduce this:

> $ gdb ./test1
> GNU gdb (GDB) (Cygwin 8.2.1-1) 8.2.1
> Copyright (C) 2018 Free Software Foundation, Inc.
> License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
> This is free software: you are free to change and redistribute it.
> There is NO WARRANTY, to the extent permitted by law.
> Type "show copying" and "show warranty" for details.
> This GDB was configured as "x86_64-pc-cygwin".
> Type "show configuration" for configuration details.
> For bug reporting instructions, please see:
> <http://www.gnu.org/software/gdb/bugs/>.
> Find the GDB manual and other documentation resources online at:
>     <http://www.gnu.org/software/gdb/documentation/>.
> 
> For help, type "help".
> Type "apropos word" to search for commands related to "word"...
> Reading symbols from ./test1...done.
> (gdb) b test1.f:9
> Breakpoint 1 at 0x100401140: file test1.f, line 9.
> (gdb) r
> Starting program: /wip/test1
>  Supply the equivalent of run time in seconds.
> (Note: a negative run time will stop run):
> Thread 1 "test1" hit Breakpoint 1, test () at test1.f:9
> 9                   read(*,*) cycle_length
> (gdb) b unix.c:271
> Breakpoint 2 at 0x3e11eb3c0: file /usr/src/debug/gcc-7.4.0-1/libgfortran/io/unix.c, line 272.
> (gdb) c
> Continuing.
> 
> Thread 1 "test1" hit Breakpoint 2, _gfortrani_flush_if_preconnected (s=0x80003b160) at /usr/src/debug/gcc-7.4.0-1/libgfo
> rtran/io/unix.c:272
> 272     {
> (gdb) c
> Continuing.
> -1
> STOP normal termination
> [Inferior 1 (process 10024) exited normally]
> (gdb)

> The only thing changed was the gdb version.  I don't know how to proceed from here.
> Can you tell if this is a gdb or a "Cygwin implementation of" gdb problem?

I'm not sure what the distinction you are making here is?  The problem 
almost certainly exists in upstream gdb, without the few patches which 
are applied in the Cygwin package of gdb.

I'd guess that this is problem is due to upstream changes in gdb, 
interacting with bugs or limitations of Cygwin.

--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2020-01-29 13:07 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-16 21:03 cin and read(*,*) not waiting for kbd input in gdb Rockefeller, Harry
2020-01-17 15:40 ` Jon Turney
2020-01-17 17:34   ` Rockefeller, Harry
2020-01-21 21:58     ` Rockefeller, Harry
2020-01-27 16:46       ` Rockefeller, Harry
2020-01-28 13:28         ` Jon Turney
     [not found]           ` <2c4e575b182d46bba28e9fd688a0c9e7@vsrv060ex01.ssd.fsi.com>
2020-01-29 13:07             ` Jon Turney

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).