Thanks Damien and Frank for the advises. I've tryied turning audio On, and also turning "compute audio" on, but no result, I can't get any audio signal.
When open PD the DOS window says:
setsockopt <TCP_NODELAY> failed
D:/PD/PD not using MIDI input <use 'pd -midiindev 1' to override> could not open midi output 0 <MIDI Mapper>: PortMidi: 'Host error' 12 audio buffers Wave out open device 0 + 0 waveOutOpen device: MMSYSTEM004 The secified device is already in use. Wait until it is free, and then try again.
What can I do?
Regards:
Pedro.
Internet GRATIS es Yahoo! Conexión 4004-1010 desde Buenos Aires. Usuario: yahoo; contraseña: yahoo Más ciudades: http://conexion.yahoo.com.ar
On Mon, 22 Sep 2003 01:05:12 -0300 (ART) Pedro Alvarez pedro_alv@yahoo.com.ar wrote:
Thanks Damien and Frank for the advises. I've tryied turning audio On, and also turning "compute audio" on, but no result, I can't get any audio signal.
When open PD the DOS window says:
setsockopt <TCP_NODELAY> failed
D:/PD/PD not using MIDI input <use 'pd -midiindev 1' to override> could not open midi output 0 <MIDI Mapper>: PortMidi: 'Host error' 12 audio buffers Wave out open device 0 + 0 waveOutOpen device: MMSYSTEM004 The secified device is already in use. Wait until it is free, and then try again.
What can I do?
Shut everything down that might be using your soundcard?
m
. . . . |____ http://www.mprims.tk
hi
i am trying to install PD on linux SuSE 8.2 but i get errors when compiling it. i have tried PD 0.36 and 0.37 with same results. i am pretty new to linux and i don't know how to solve it. Should i move to some other linux distribution? suggestions? below i paste the compilatoin error i get. many thanx!
cc -DPD -DUNIX -Wall -W -Wstrict-prototypes -Werror -Wno-unused -Wno-
parentheses -Wno-switch -O6 -funroll-loops -fomit-frame-pointer -DDL_OPEN -
DPA_USE_OSS -DPA_LITTLE_ENDIAN -DUSEAPI_OSS -
I../portaudio/pa_common -I../portaudio/pablio -I../portaudio/portmidi-macosx -
Werror -DPA_USE_ALSA -DUSEAPI_ALSA -DUSEAPI_JACK -
DINSTALL_PREFIX="/usr/local" -I. -c -o ../obj/d_ctl.o d_ctl.c
d_ctl.c: In function line_tilde_perform': d_ctl.c:110: warning: dereferencing type-punned pointer will break strict-aliasing rules d_ctl.c:110: warning: dereferencing type-punned pointer will break strict-aliasing rules d_ctl.c: In function
vline_tilde_float':
d_ctl.c:285: warning: dereferencing type-punned pointer will break strict-aliasing
rules
d_ctl.c:285: warning: dereferencing type-punned pointer will break strict-aliasing
rules: *** [d_ctl.o] Error 1
i am trying to install PD on linux SuSE 8.2 but i get errors when compiling it. i have tried PD 0.36 and 0.37 with same results. i am pretty new to linux and i don't know how to solve it. Should i move to some other linux distribution? suggestions? below i paste the compilatoin error i get.
you'll have to remove the -Werror flag from your makefiles...
take care...
Tim mailto:TimBlechmann@gmx.de ICQ: 96771783 http://www.nyds-exp-discogs.tk -- The only people for me are the mad ones, the ones who are mad to live, mad to talk, mad to be saved, desirous of everything at the same time, the ones who never yawn or say a commonplace thing, but burn, burn, burn, like fabulous yellow roman candles exploding like spiders across the stars and in the middle you see the blue centerlight pop and everybody goes "Awww!" Jack Kerouac
The hack I used is to look in the makefile in the directory containing the file whose compilation resulted in the warning message and remove all occurrences of -Werror from it. The proper thing to do is to eliminate the warning, in this case I think the use of a union is the way to go, but then you'll find there is another warning that shows up later on about echoed exp or something that looks like a redeclaration of a global in local scope (?) Martin
eh wrote:
hi
i am trying to install PD on linux SuSE 8.2 but i get errors when compiling it. i have tried PD 0.36 and 0.37 with same results. i am pretty new to linux and i don't know how to solve it. Should i move to some other linux distribution? suggestions? below i paste the compilatoin error i get. many thanx!
cc -DPD -DUNIX -Wall -W -Wstrict-prototypes -Werror -Wno-unused -Wno- parentheses -Wno-switch -O6 -funroll-loops -fomit-frame-pointer -DDL_OPEN - DPA_USE_OSS -DPA_LITTLE_ENDIAN -DUSEAPI_OSS - I../portaudio/pa_common -I../portaudio/pablio -I../portaudio/portmidi-macosx - Werror -DPA_USE_ALSA -DUSEAPI_ALSA -DUSEAPI_JACK - DINSTALL_PREFIX="/usr/local" -I. -c -o ../obj/d_ctl.o d_ctl.c d_ctl.c: In function
line_tilde_perform': d_ctl.c:110: warning: dereferencing type-punned pointer will break strict-aliasing rules d_ctl.c:110: warning: dereferencing type-punned pointer will break strict-aliasing rules d_ctl.c: In function
vline_tilde_float': d_ctl.c:285: warning: dereferencing type-punned pointer will break strict-aliasing rules d_ctl.c:285: warning: dereferencing type-punned pointer will break strict-aliasing rules: *** [d_ctl.o] Error 1
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
Hi all, I think removing the -Werror can generate bad code... better to use -fno-strict-aliasing for now. This has the disadvantage of generating slower code in some cases -- I haven't checked this in Pd's case -- but is at least correct.
I think using unions is the correct way to go. This means rewriting PD_BADFLOAT somehow, and I haven't decided the best way to do it...
cheers Miller
On Mon, Sep 22, 2003 at 10:38:42AM -0400, Martin Peach wrote:
The hack I used is to look in the makefile in the directory containing the file whose compilation resulted in the warning message and remove all occurrences of -Werror from it. The proper thing to do is to eliminate the warning, in this case I think the use of a union is the way to go, but then you'll find there is another warning that shows up later on about echoed exp or something that looks like a redeclaration of a global in local scope (?) Martin
eh wrote:
hi
i am trying to install PD on linux SuSE 8.2 but i get errors when compiling it. i have tried PD 0.36 and 0.37 with same results. i am pretty new to linux and i don't know how to solve it. Should i move to some other linux distribution? suggestions? below i paste the compilatoin error i get. many thanx!
cc -DPD -DUNIX -Wall -W -Wstrict-prototypes -Werror -Wno-unused -Wno- parentheses -Wno-switch -O6 -funroll-loops -fomit-frame-pointer -DDL_OPEN
DPA_USE_OSS -DPA_LITTLE_ENDIAN -DUSEAPI_OSS - I../portaudio/pa_common -I../portaudio/pablio -I../portaudio/portmidi-macosx - Werror -DPA_USE_ALSA -DUSEAPI_ALSA -DUSEAPI_JACK - DINSTALL_PREFIX="/usr/local" -I. -c -o ../obj/d_ctl.o d_ctl.c d_ctl.c: In function
line_tilde_perform': d_ctl.c:110: warning: dereferencing type-punned pointer will break strict-aliasing rules d_ctl.c:110: warning: dereferencing type-punned pointer will break strict-aliasing rules d_ctl.c: In function
vline_tilde_float': d_ctl.c:285: warning: dereferencing type-punned pointer will break strict-aliasing rules d_ctl.c:285: warning: dereferencing type-punned pointer will break strict-aliasing rules: *** [d_ctl.o] Error 1
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
The hack I used is to look in the makefile in the directory containing the file whose compilation resulted in the warning message and remove all occurrences of -Werror from it. The proper thing to do is to eliminate the warning, in this case I think the use of a union is the way to go, but then you'll find there is another warning that shows up later on about echoed exp or something that looks like a redeclaration of a global in local scope (?)
ok. this worked well. thanks but now when i try to run pd i get an error saying that its not an tcl application. i have been messing around with the installation before i post my problem to the list and i installed Activetcl 8.4.4.0 few days ago. again. suggestions?
thanks
On Monday, Sep 22, 2003, at 11:49 America/New_York, eh wrote:
The hack I used is to look in the makefile in the directory containing the file whose compilation resulted in the warning message and remove all occurrences of -Werror from it. The proper thing to do is to eliminate the warning, in this case I think the use of a union is the way to go, but then you'll find there is another warning that shows up later on about echoed exp or something that looks like a redeclaration of a global in local scope (?)
ok. this worked well. thanks but now when i try to run pd i get an error saying that its not an tcl application. i have been messing around with the installation before i post my problem to the list and i installed Activetcl 8.4.4.0 few days ago. again. suggestions?
I know that under MacOS X, Pd only gets along with Tcl/Tk 8.4.1. Its got problems with 8.4.2 and 8.4.4. Maybe the same is true under linux?
.hc
http://at.or.at/hans/
Man has survived hitherto because he was too ignorant to know how to realize his wishes. Now that he can realize them, he must either change them, or perish. -William Carlos Williams
hi,
just as note: i tried to compile pd under suse8.2 only once, got so many errors that i couldn't solve with my "newbie" skills...
but under 8.1 i had no problems
how about the gcc version difference on 8.1/8.2?
cheers -andre ps. my solution was, stick to 8.1
Hans-Christoph Steiner wrote:
On Monday, Sep 22, 2003, at 11:49 America/New_York, eh wrote:
The hack I used is to look in the makefile in the directory containing the file whose compilation resulted in the warning message and remove all occurrences of -Werror from it. The proper thing to do is to eliminate the warning, in this case I think the use of a union is the way to go, but then you'll find there is another warning that shows up later on about echoed exp or something that looks like a redeclaration of a global in local scope (?)
ok. this worked well. thanks but now when i try to run pd i get an error saying that its not an tcl application. i have been messing around with the installation before i post my problem to the list and i installed Activetcl 8.4.4.0 few days ago. again. suggestions?
I know that under MacOS X, Pd only gets along with Tcl/Tk 8.4.1. Its got problems with 8.4.2 and 8.4.4. Maybe the same is true under linux?
.hc
http://at.or.at/hans/
Man has survived hitherto because he was too ignorant to know how to realize his wishes. Now that he can realize them, he must either change them, or perish. -William Carlos Williams
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
how about the gcc version difference on 8.1/8.2?
8.1 has gcc 3.2.?, 8.2 has 3.3 (or 3.3pre)
take care...
Tim mailto:TimBlechmann@gmx.de ICQ: 96771783 http://www.nyds-exp-discogs.tk -- The only people for me are the mad ones, the ones who are mad to live, mad to talk, mad to be saved, desirous of everything at the same time, the ones who never yawn or say a commonplace thing, but burn, burn, burn, like fabulous yellow roman candles exploding like spiders across the stars and in the middle you see the blue centerlight pop and everybody goes "Awww!" Jack Kerouac