Yves (most probably)...
I can't seem to compile _gem2pdp/pdp2gem_. I'm trying it with GEM 0.888-pre1, Pd 0.37.1 & gem2pdp-0.5, pdp-0.12.2. My paths seem to be correct, but at the _make_ command, I get...
[root@localhost gem2pdp-0.5]# make
cat /usr/lib/pd/pdp-0.12.2/include/pdp.h | grep -v m_pd > pdp-light.h
g++ -DPD -O2 -funroll-loops -fomit-frame-pointer -ffast-math -Wall -W
-Wno-unused -Wno-parentheses -Wno-switch -DGEM2PDP_VERSION="0.5" -g
-I/usr/lib/pd/src -I. -I/usr/lib/pd/pdp-0.12.2/include
-I/home/kliger/install/gem-0.888pre/src -o gem2pdp.o -c gem2pdp.cpp
In file included from
/home/kliger/install/gem-0.888pre/src/Base/GemPixUtil.h:37,
from gem2pdp.h:14,
from gem2pdp.cpp:11:
/home/kliger/install/gem-0.888pre/src/Base/config.h:8:31:
Base/configLinux.h: No such file or directory
gem2pdp.cpp: In member function virtual void gem2pdp::bangMess()': gem2pdp.cpp:125: invalid conversion from
t_int*' to `int*'
make: *** [gem2pdp.o] Error 1
Any ideas? Thanks.
/brad
hi,
mm, don't know if it's really something on which i could help.
maybe i forgot that include and you can add it by hand if ever you find it in gem.
i'm using gem from cvs and couldn't find a trace of that file...
ciao, sevy
Brad Kligerman wrote:
Yves (most probably)...
I can't seem to compile _gem2pdp/pdp2gem_. I'm trying it with GEM 0.888-pre1, Pd 0.37.1 & gem2pdp-0.5, pdp-0.12.2. My paths seem to be correct, but at the _make_ command, I get...
[root@localhost gem2pdp-0.5]# make cat /usr/lib/pd/pdp-0.12.2/include/pdp.h | grep -v m_pd > pdp-light.h g++ -DPD -O2 -funroll-loops -fomit-frame-pointer -ffast-math -Wall -W -Wno-unused -Wno-parentheses -Wno-switch -DGEM2PDP_VERSION="0.5" -g -I/usr/lib/pd/src -I. -I/usr/lib/pd/pdp-0.12.2/include
-I/home/kliger/install/gem-0.888pre/src -o gem2pdp.o -c gem2pdp.cpp In file included from /home/kliger/install/gem-0.888pre/src/Base/GemPixUtil.h:37, from gem2pdp.h:14, from gem2pdp.cpp:11: /home/kliger/install/gem-0.888pre/src/Base/config.h:8:31: Base/configLinux.h: No such file or directory gem2pdp.cpp: In member functionvirtual void gem2pdp::bangMess()': gem2pdp.cpp:125: invalid conversion from
t_int*' to `int*' make: *** [gem2pdp.o] Error 1Any ideas? Thanks.
/brad
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
Yves Degoyon wrote:
hi,
mm, don't know if it's really something on which i could help.
maybe i forgot that include and you can add it by hand if ever you find it in gem.
i'm using gem from cvs and couldn't find a trace of that file...
/home/kliger/install/gem-0.888pre/src/Base/GemPixUtil.h:37, from gem2pdp.h:14, from gem2pdp.cpp:11: /home/kliger/install/gem-0.888pre/src/Base/config.h:8:31: Base/configLinux.h: No such file or directory
Base/configLinux.h is included from Base/config.h it should be generated by the configure-script. formerly Base/config.h was generated by configure, however this lead to clumsy excludes for other platforms in the object-classes. now Base/config.h includes different configuration-files for different platforms.
so the answer is: re-run configure (of Gem)
mfga..dsr IOhannes