hi,
i'm trying to compile the vbap_reverb external for pd.linux. after cleaning up an orphan "/*" in line 363 of the C code which gave me the first compile error, i am still getting the following:
cc1: warnings being treated as errors vbap_reverb.c: In function 'vbap': vabp_reverb.c:122: warning: 'winner_set' might be used uninitialized in this function vbap_reverb.c: In function 'vbap_matrix': vbap_reverb.c:371: warning: 'counter' might be used uninitialized in this function make: *** [vbap_reverb.pd_linux] Error 1
and issuing a "make -i" or "make -Bi" doesn't work. the external simply doesn't get made.
i have successfully compiled the normal vbap external already, so i am assuming that the bugs are coming from something in Olaf's additions to the code. has anybody successfully compiled this external under linux? if you have, could you post an alternate [working] version of the C code?
thanks, derek
This mail sent through IMP: http://horde.org/imp/
Hi Derek,
have you tried using the (adjusted) makefile from vbap? I can't remember having touched any of these variables so maybe the original makefile has some options set to suppress these warnings that are not present in my makefile?
Olaf
PS: please let me know how it goes so that I can update the code...
derek@x-i.net schrieb:
hi,
i'm trying to compile the vbap_reverb external for pd.linux. after cleaning up an orphan "/*" in line 363 of the C code which gave me the first compile error, i am still getting the following:
cc1: warnings being treated as errors vbap_reverb.c: In function 'vbap': vabp_reverb.c:122: warning: 'winner_set' might be used uninitialized in this function vbap_reverb.c: In function 'vbap_matrix': vbap_reverb.c:371: warning: 'counter' might be used uninitialized in this function make: *** [vbap_reverb.pd_linux] Error 1
and issuing a "make -i" or "make -Bi" doesn't work. the external simply doesn't get made.
i have successfully compiled the normal vbap external already, so i am assuming that the bugs are coming from something in Olaf's additions to the code. has anybody successfully compiled this external under linux? if you have, could you post an alternate [working] version of the C code?
thanks, derek
This mail sent through IMP: http://horde.org/imp/
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
On Tue, 8 Jul 2003 derek@x-i.net wrote:
hi,
i'm trying to compile the vbap_reverb external for pd.linux. after cleaning up an orphan "/*" in line 363 of the C code which gave me the first compile error, i am still getting the following:
cc1: warnings being treated as errors vbap_reverb.c: In function 'vbap': vabp_reverb.c:122: warning: 'winner_set' might be used uninitialized in this function vbap_reverb.c: In function 'vbap_matrix': vbap_reverb.c:371: warning: 'counter' might be used uninitialized in this function make: *** [vbap_reverb.pd_linux] Error 1
Remove "-Werror" from the makefile.
hi kjetil,
this seemed to do the trick. same errors, but the object compiles. thanks, derek
Kjetil S. Matheussen wrote:
On Tue, 8 Jul 2003 derek@x-i.net wrote:
hi,
i'm trying to compile the vbap_reverb external for pd.linux. after cleaning up an orphan "/*" in line 363 of the C code which gave me the first compile error, i am still getting the following:
cc1: warnings being treated as errors vbap_reverb.c: In function 'vbap': vabp_reverb.c:122: warning: 'winner_set' might be used uninitialized in this function vbap_reverb.c: In function 'vbap_matrix': vbap_reverb.c:371: warning: 'counter' might be used uninitialized in this function make: *** [vbap_reverb.pd_linux] Error 1
Remove "-Werror" from the makefile.