Comment 8 for bug 1848200

Revision history for this message
Frank Heimes (fheimes) wrote :

Tested gdb 8.1-0ubuntu3.2~ppa.1 from ppa:dannf/lp1848200 on s390x and it works fine.

ubuntu@hwe0002:~$ uname -a
Linux hwe0002 4.15.0-66-generic #75-Ubuntu SMP Tue Oct 1 05:22:41 UTC 2019 s390x s390x s390x GNU/Linux
ubuntu@hwe0002:~$ gdb hello
GNU gdb (Ubuntu 8.1-0ubuntu3.2~ppa.1) 8.1.0.20180409-git
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 "s390x-linux-gnu".
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 hello...done.
(gdb) b hello.c:5
Breakpoint 1 at 0x740: file hello.c, line 5.
(gdb) run
Starting program: /home/ubuntu/hello

Breakpoint 1, main () at hello.c:5
5 printf("Hello, World!");
(gdb) quit