> On Jul 18, 2017, at 5:14 PM, Max <[email protected]> wrote: > > On 2017년 07월 18일 16:22, Dan Wilcox wrote: >>> On Jul 18, 2017, at 3:56 PM, Max <[email protected] On 2017년 07월 >>> 18일 15:04, Dan Wilcox wrote: >>> i did another make and surprise! it doesn't run any more. >>> >>> ./pd >>> Segmentation fault >>> >>> do i need to do a make clean or something before a new attempt? >> Possibly, depending on if things have changed in the configuration, etc it >> doesn't hurt to clean & make again. > > I just deleted the whole folder and downloaded it again
No need to do that. Running "make clean" clears out the build. > ./autogen.sh > ./configure --enable-jack > make > cd bin > ./pd > Segmentation fault I would do a rebuild with debug enabled and then run it through gdb to see where the crash is happening: make clean ./configure --enable-debug --enable-jack make cd bin gdb ./pd Basic instructions are here: http://unknownroad.com/rtfm/gdbtut/gdbsegfault.html <http://unknownroad.com/rtfm/gdbtut/gdbsegfault.html> What we need is the stack trace to see which functions are begin called before the crash. -------- Dan Wilcox @danomatika <http://twitter.com/danomatika> danomatika.com <http://danomatika.com/> robotcowboy.com <http://robotcowboy.com/>
_______________________________________________ [email protected] mailing list UNSUBSCRIBE and account-management -> https://lists.puredata.info/listinfo/pd-list
