OK!
so i have a new problem !!
My 0.36 version worked fine, i have a hammerfall dsp an Multiface and i want to work with 8 out channels and pd and the grid-patch.
So now i got to know that i have to use pd 0.37 in order to compile grid.
So i did that: The rpms did not work, since i want to run it through jack:
Thats my compilation error:
cc1: warnings being treated as errors s_audio_jack.c: In function `srate': s_audio_jack.c:72: warning: long int format, jack_nframes_t arg (arg 2) make: *** [s_audio_jack.o] Fehler 1
Any IDEA what i could do ?
Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com
RH8 probably used gcc-3.3 as its default compiler. 3.3 has stricter warnings, like the one that caused this to die. You need to change your link so that 'cc' and/or 'gcc' points to gcc < 3.3.
Or you can do this: http://iem.kug.ac.at/mailinglists/pd-dev/2003-09/002996.html and use "make CC=gcc-3.2"
.hc
On Thursday, Oct 2, 2003, at 23:57 America/New_York, luigi rensinghoff wrote:
OK!
so i have a new problem !!
My 0.36 version worked fine, i have a hammerfall dsp an Multiface and i want to work with 8 out channels and pd and the grid-patch.
So now i got to know that i have to use pd 0.37 in order to compile grid.
So i did that: The rpms did not work, since i want to run it through jack:
Thats my compilation error:
cc1: warnings being treated as errors s_audio_jack.c: In function `srate': s_audio_jack.c:72: warning: long int format, jack_nframes_t arg (arg 2) make: *** [s_audio_jack.o] Fehler 1
Any IDEA what i could do ?
Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
http://at.or.at/hans/
On Friday 03 October 2003 05:57, luigi rensinghoff wrote:
Thats my compilation error:
cc1: warnings being treated as errors s_audio_jack.c: In function `srate': s_audio_jack.c:72: warning: long int format, jack_nframes_t arg (arg 2) make: *** [s_audio_jack.o] Fehler 1
Any IDEA what i could do ?
You can also add a typecast to the function on line 72 of the s_audio_jack.c file IIRC it is a printf(.... ); or a post(.......); statement so I think you can even comment it out.
If you have no idea what I mean , these are the specifics: open the file s_audio_jack.c in a text editor. change line 72 from: printf ("jack: sample rate %ld/sec\n", srate); to printf ("jack:sample rate %ld/sec\n",(long int) srate);
And it should compile. Gerard