I configured Pd with:
./configure --enable-jack --enable-simd --enable-optimize --enable-fftw --enable-threadedgui --enable-threadedsf --enable-gathreadlocks
Is this combination of ./configure options known to be buggy?
Sending 1 read message to [soundfiler] has no effect - no change to the data in the tables, no output from the [soundfiler] outlet, no message in the terminal window.
Sending a second read message to the same [soundfiler] crashes Pd - patch windows are non responsive, the main Pd window responds to close (closing all Pd windows), but it doesn't exit Pd - I have to Ctrl-C then Ctrl-\ in the terminal window to quit Pd completely.
This happens both with 24bit and 16bit PCM stereo WAV files.
./configure --enable-jack --enable-simd --enable-optimize --enable-fftw --enable-threadedgui --enable-threadedsf --enable-gathreadlocks
Is this combination of ./configure options known to be buggy?
no ... i'm using it ....
Sending 1 read message to [soundfiler] has no effect - no change to the data in the tables, no output from the [soundfiler] outlet, no message in the terminal window.
Sending a second read message to the same [soundfiler] crashes Pd - patch windows are non responsive, the main Pd window responds to close
(closing all Pd windows), but it doesn't exit Pd - I have to Ctrl-C then Ctrl-\ in the terminal window to quit Pd completely.
can you send me your example patch, that i can have a look at it? (without soundfile please ... 56k dialup connection)
cheers ... tim
Tim Blechmann wrote:
./configure --enable-jack --enable-simd --enable-optimize --enable-fftw --enable-threadedgui --enable-threadedsf --enable-gathreadlocks
Is this combination of ./configure options known to be buggy?
no ... i'm using it ....
Sending 1 read message to [soundfiler] has no effect - no change to the data in the tables, no output from the [soundfiler] outlet, no message in the terminal window.
Sending a second read message to the same [soundfiler] crashes Pd - patch windows are non responsive, the main Pd window responds to close
(closing all Pd windows), but it doesn't exit Pd - I have to Ctrl-C then Ctrl-\ in the terminal window to quit Pd completely.
can you send me your example patch, that i can have a look at it? (without soundfile please ... 56k dialup connection)
cheers ... tim
Attached, also my .pdrc in case any of the libs are relevant.
#N canvas 925 515 488 159 10; #X obj 86 63 soundfiler; #X obj 196 63 table alphabet-L; #X obj 196 83 table alphabet-R; #X obj 86 83 print; #X msg 86 43 read -resize alphabet.wav alphabet-L alphabet-R; #X obj 86 15 bng 15 250 50 0 empty empty empty 0 -6 0 8 -262144 -1 -1; #X text 110 14 <--- clicking this twice crashes Pd!; #X connect 0 0 3 0; #X connect 4 0 0 0; #X connect 5 0 4 0;
-verbose -oss -audiobuf 100 -blocksize 64 -sleepgrain 2 -midiindev 1 -midioutdev 1
-path /home/claude/public/claudiusmaximus
-lib /home/claude/public/development/pd--devel-0-37--2004-11-01/gridflow/gridflow -path /home/claude/public/development/pd--devel-0-37--2004-11-01/gridflow/abstractions -helppath /home/claude/public/development/pd--devel-0-37--2004-11-01/gridflow/help
-path /home/claude/public/development/pd--devel-0-37--2004-11-01/pd/extra -path /home/claude/public/development/pd--devel-0-37--2004-11-01/externals/build/linux
-path /home/claude/public/development/pd--devel-0-37--2004-11-01/abstractions -path /home/claude/public/development/pd--devel-0-37--2004-11-01/abstractions/iemlib -helppath /home/claude/public/development/pd--devel-0-37--2004-11-01/abstractions/iemlib-help -path /home/claude/public/development/pd--devel-0-37--2004-11-01/abstractions/rradical
oops ... i fixed that deadlock some time ago ... forgot to check in the fix for that...
in cvs ...
t
Tim Blechmann wrote:
./configure --enable-jack --enable-simd --enable-optimize --enable-fftw --enable-threadedgui --enable-threadedsf --enable-gathreadlocks
Is this combination of ./configure options known to be buggy?
no ... i'm using it ....
Sending 1 read message to [soundfiler] has no effect - no change to the data in the tables, no output from the [soundfiler] outlet, no message in the terminal window.
Sending a second read message to the same [soundfiler] crashes Pd - patch windows are non responsive, the main Pd window responds to close
(closing all Pd windows), but it doesn't exit Pd - I have to Ctrl-C then Ctrl-\ in the terminal window to quit Pd completely.
can you send me your example patch, that i can have a look at it? (without soundfile please ... 56k dialup connection)
cheers ... tim
Trying to get a working Pd with soundfiler, I checked out another copy of Pd devel_0_37, then did this:
--- [claude@fourier pd]$ ls -1 AUTHORS bin ChangeLog configure.ac COPYING CVS darwin_pkg doc extra icons INSTALL.txt LICENSE.txt Makefile.am man mkdmg NEWS obj Pd.command pd.info portaudio portaudio_v18 portmidi_osx README README.txt src [claude@fourier pd]$ autoconf -V autoconf (GNU Autoconf) 2.59 Written by David J. MacKenzie and Akim Demaille.
Copyright (C) 2003 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. [claude@fourier pd]$ autoconf configure.ac:10: error: possibly undefined macro: AM_INIT_AUTOMAKE If this token and others are legitimate, please use m4_pattern_allow. See the Autoconf documentation. configure.ac:146: error: possibly undefined macro: AM_CONDITIONAL [claude@fourier pd]$ ./configure --enable-jack --enable-simd --enable-optimize --enable-fftw --enable-threadedgui --enable-threadedsf --enable-gathreadlocks ./configure: line 1326: syntax error near unexpected token `pd,0.37-devel' ./configure: line 1326: `AM_INIT_AUTOMAKE(pd,0.37-devel)' [claude@fourier pd]$ ----
There seems to be a problem - what am I doing wrong?
[claude@fourier pd]$ autoconf -V autoconf (GNU Autoconf) 2.59 Written by David J. MacKenzie and Akim Demaille.
either use the bootstrap script in ./pd and the configure script there, or the old configure script in ./pd/src (and run autoconf there)
t