From: <jaz...@sp...> - 2005-03-11 20:44:56
|
I'm trying to be able to run Jazz++ on FC3. The binary didn't work. First I get a pop-up window that say: "Could not open config include file .synth_confi gs.jzi" and then from the command prompt: jazz: dynamic-link.h:57: elf_get_dynamic_info: Assertion `! "bad dynamic tag"' failed. Abort (core dumped) From there I have been trying to get it to compile from source. I finally got the alsa-lib-devel and the wxGTK-devel installed so the 'rebuild' command runs mostly without errors. I still get: /usr/share/aclocal/wxwin.m4:36: warning: underquoted definition of AM_OPTIONS_WXCONFIG run info '(automake)Extending aclocal' or see http://sources.redhat.com/automake/automake.html#Extending-aclocal /usr/share/aclocal/wxwin.m4:59: warning: underquoted definition of AM_PATH_WXCONFIG When it finally gets to the compilation it runs through a fair amount of it before crashing out as follows: if g++ -DHAVE_CONFIG_H -I. -I. -I. -DJAZZ_DATADIR=\"/usr/local/share/jazz\" -I/ usr/lib/wx/include/gtk-2.4 -DGTK_NO_CHECK_CASTS -D__WXGTK__ -D_FILE_OFFSET_BITS= 64 -D_LARGE_FILES -I../xrc/include -g -O2 -MT jazz-sig2.o -MD -MP -MF ".deps/ja zz-sig2.Tpo" -c -o jazz-sig2.o `test -f 'sig2.cpp' || echo './'`sig2.cpp; \ then mv -f ".deps/jazz-sig2.Tpo" ".deps/jazz-sig2.Po"; else rm -f ".deps/jazz-si g2.Tpo"; exit 1; fi In file included from sig2.cpp:22: sig2.h: In member function `virtual void tSampleResizingIterator<T, SPL>::Out(co nst tSigValue&)': sig2.h:447: error: `current' undeclared (first use this function) sig2.h:447: error: (Each undeclared identifier is reported only once for each fu nction it appears in.) sig2.h:447: error: `length' undeclared (first use this function) sig2.h:448: error: there are no arguments to `Resize' that depend on a template parameter, so a declaration of `Resize' must be available sig2.h:448: error: (if you use `-fpermissive', G++ will accept your code, but al lowing the use of an undeclared name is deprecated) sig2.h:449: error: `channels' undeclared (first use this function) sig2.h:451: error: `data' undeclared (first use this function) make[2]: *** [jazz-sig2.o] Error 1 make[2]: Leaving directory `/home/msutton/jazz/src' make[1]: *** [all] Error 2 make[1]: Leaving directory `/home/msutton/jazz/src' make: *** [all-recursive] Error 1 |
From: Dave F. <dav...@da...> - 2005-03-11 20:54:54
|
These are gcc 3.4 problems. gcc 3.4 is a lot stricter about some things. I haven't managed to get it to build since my distribution upgraded to gcc 3.4 either. ;( > In file included from sig2.cpp:22: > sig2.h: In member function `virtual void tSampleResizingIterator<T, > SPL>::Out(co nst tSigValue&)': > sig2.h:447: error: `current' undeclared (first use this function) > sig2.h:447: error: (Each undeclared identifier is reported only once for > each fu nction it appears in.) > sig2.h:447: error: `length' undeclared (first use this function) The solution to both of these, if I recall correctly, was to declare the two variables as int higher in the method declaration, or something like that. > sig2.h:448: error: there are no arguments to `Resize' that depend on a > template parameter, so a declaration of `Resize' must be available > sig2.h:448: error: (if you use `-fpermissive', G++ will accept your code, > but al lowing the use of an undeclared name is deprecated) > sig2.h:449: error: `channels' undeclared (first use this function) > sig2.h:451: error: `data' undeclared (first use this function) Same here. And the message is a lie, I used -fpermissive and got even more errors. :( Even after all of these, there are numerous other errors in the code. If you have the time and interest, it would be wonderful if you could track them down. I don't know about the other guys, but i'm fairly well covered up with school and work right now, and Jazz is fairly down my list of priorities these days. I wish it were higher, but that's how it is. Sorry I couldn't be more helpful. Dave > make[2]: *** [jazz-sig2.o] Error 1 > make[2]: Leaving directory `/home/msutton/jazz/src' > make[1]: *** [all] Error 2 > make[1]: Leaving directory `/home/msutton/jazz/src' > make: *** [all-recursive] Error 1 > > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from real users. > Discover which products truly live up to the hype. Start reading now. > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > _______________________________________________ > jazzplusplus-devel mailing list > jaz...@li... > https://lists.sourceforge.net/lists/listinfo/jazzplusplus-devel -- Visit my website! http://www.davefancella.com/?event=em Wilner's Observation: All conversations with a potato should be conducted in private. |
From: <jaz...@sp...> - 2005-03-15 18:16:39
|
I was able to get it to compile by defining those vairables in that class definition. I don't understand why I had to do that because they should have been inherited from definitions several levels up. Anyway, after compile, I get it running and none of the dialogs work. Is this part of the TODO list? Mike On Fri, 11 Mar 2005 14:54:44 -0600, Dave Fancella - dav...@da... <+jazz+spammike+b3cbdaae3e.davidfancella#dav...@sp...> wrote: > These are gcc 3.4 problems. gcc 3.4 is a lot stricter about some things. I > haven't managed to get it to build since my distribution upgraded to gcc 3.4 > either. ;( > > > In file included from sig2.cpp:22: > > sig2.h: In member function `virtual void tSampleResizingIterator<T, > > SPL>::Out(co nst tSigValue&)': > > sig2.h:447: error: `current' undeclared (first use this function) > > sig2.h:447: error: (Each undeclared identifier is reported only once for > > each fu nction it appears in.) > > sig2.h:447: error: `length' undeclared (first use this function) > > The solution to both of these, if I recall correctly, was to declare the two > variables as int higher in the method declaration, or something like that. > > > sig2.h:448: error: there are no arguments to `Resize' that depend on a > > template parameter, so a declaration of `Resize' must be available > > sig2.h:448: error: (if you use `-fpermissive', G++ will accept your code, > > but al lowing the use of an undeclared name is deprecated) > > sig2.h:449: error: `channels' undeclared (first use this function) > > sig2.h:451: error: `data' undeclared (first use this function) > > Same here. And the message is a lie, I used -fpermissive and got even more > errors. :( > > Even after all of these, there are numerous other errors in the code. If you > have the time and interest, it would be wonderful if you could track them > down. I don't know about the other guys, but i'm fairly well covered up with > school and work right now, and Jazz is fairly down my list of priorities > these days. I wish it were higher, but that's how it is. Sorry I couldn't > be more helpful. > > Dave > > > make[2]: *** [jazz-sig2.o] Error 1 > > make[2]: Leaving directory `/home/msutton/jazz/src' > > make[1]: *** [all] Error 2 > > make[1]: Leaving directory `/home/msutton/jazz/src' > > make: *** [all-recursive] Error 1 > > > > > > ------------------------------------------------------- > > SF email is sponsored by - The IT Product Guide > > Read honest & candid reviews on hundreds of IT Products from real users. > > Discover which products truly live up to the hype. Start reading now. > > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > > _______________________________________________ > > jazzplusplus-devel mailing list > > jaz...@li... > > https://lists.sourceforge.net/lists/listinfo/jazzplusplus-devel > > -- > Visit my website! > http://www.davefancella.com/?event=em > > Wilner's Observation: > All conversations with a potato should be conducted in private. > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from real users. > Discover which products truly live up to the hype. Start reading now. > http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click > _______________________________________________ > jazzplusplus-devel mailing list > jaz...@li... > https://lists.sourceforge.net/lists/listinfo/jazzplusplus-devel > |