Re: [Rpcemu] rpcemu v01.5 - segmentationfault...

2017-08-14 Thread Ralph Corderoy
Hi David, > > > zed@zed-pc:~$ cd /home/zed/rpcemu-0.8.15/src CFLAGS=-no-pie > > > ./configure --enable-dynarec > > > > You've glued two separate commands together here. > > > > First do this: cd /home/zed/rpcemu-0.8.15/src > > > > Then do this: CFLAGS=-no-pie ./configure --enable-dynarec > >

Re: [Rpcemu] rpcemu v01.5 - segmentationfault...

2017-08-13 Thread zed
Hi David David Glover-Aoki wrote: > On Aug 12, 2017, at 8:25 PM, zed wrote: > > > > zed@zed-pc:~$ cd /home/zed/rpcemu-0.8.15/src CFLAGS=-no-pie > > ./configure --enable-dynarec > > You've glued two separate commands together here. > > First do this:

Re: [Rpcemu] rpcemu v01.5 - segmentationfault...

2017-08-13 Thread David Glover-Aoki
On Aug 12, 2017, at 8:25 PM, zed wrote: > > zed@zed-pc:~$ cd /home/zed/rpcemu-0.8.15/src CFLAGS=-no-pie ./configure > --enable-dynarec You've glued two separate commands together here. First do this: cd /home/zed/rpcemu-0.8.15/src Then do this: CFLAGS=-no-pie ./configure

Re: [Rpcemu] rpcemu v01.5 - segmentationfault...

2017-08-12 Thread Ralph Corderoy
Hi David, > > https://marutan.net/rpcemu/linuxcompile.html has a note at the start > > about Ubuntu 16.10 needing CFLAGS=-no-pie. I suspect this may now be > > true of Debian also. So try that, going back to the configure stage. > > Went to the website suggested and did as suggested

Re: [Rpcemu] rpcemu v01.5 - segmentationfault...

2017-08-11 Thread zed
Hi Ralph Ralph Corderoy wrote: > Hi David, > > > https://wiki.archlinux.org/index.php/Step-by-step_debugging_guide#Segmentation_faults > > > > and read about rdb and then ran the command. Here is the result of my > > attempt to do something correctly! > > Yep, you did

Re: [Rpcemu] rpcemu v01.5 - segmentationfault...

2017-08-11 Thread Ralph Corderoy
Hi David, > https://wiki.archlinux.org/index.php/Step-by-step_debugging_guide#Segmentation_faults > > and read about rdb and then ran the command. Here is the result of my > attempt to do something correctly! Yep, you did it right. > (gdb) r > Starting program: /home/zed/rpcemu-0.8.15/rpcemu

Re: [Rpcemu] rpcemu v01.5 - segmentationfault...

2017-08-10 Thread zed
Ralph Corderoy wrote: > Hi David, > > > $ ./rpcemu Shutting down Allegro due to signal #11 Segmentation fault > > $ > > https://wiki.archlinux.org/index.php/Step-by-step_debugging_guide#Segmentation_faults > shows how to `bt full' since it seems you're not used to

Re: [Rpcemu] rpcemu v01.5 - segmentationfault...

2017-08-10 Thread Ralph Corderoy
Hi David, > $ ./rpcemu > Shutting down Allegro due to signal #11 > Segmentation fault > $ https://wiki.archlinux.org/index.php/Step-by-step_debugging_guide#Segmentation_faults shows how to `bt full' since it seems you're not used to gdb(1). That gives us the first clue what might be going on.