On 2017년 07월 18일 16:22, Dan Wilcox wrote:
On Jul 18, 2017, at 3:56 PM, Max <abonnements@revolwear.com 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
What we need is the stack trace to see which functions are begin called before the crash.