make[1]: Entering directory `/home/marcell/download/Gem/src/yuv' make[1]: *** No targets specified and no makefile found. Stop.
it has Makefile.in and Make.source in yuv dir... i tried with all:: making new Makefile file but still didn't work....
hi marcell,
...yuv_* isn't really supported on any platforms other than OS X, Yet...but we're working on it! You may wish to remove that directory, or change the make file so that it doesn't try to compile that stuff...
l8r, jamie
On 01.06 15:08 tigital wrote:
...yuv_* isn't really supported on any platforms other than OS X, Yet...but we're working on it! You may wish to remove that directory, or change the make file so that it doesn't try to compile that stuff...
Hello,
Latest Gem cvs compiles when I removed the two references to yuv in the Makefile.
But the lib does not load:
/usr/local/src/Gem/Gem.pd_linux: /usr/local/src/Gem/Gem.pd_linux: undefined symbol: yuv_emboss_setup Gem: can't load library
In my limited knowledge about such things, I have tried several "make distclean" to make sure that I am running from a clean slate, but I can't find where the reference to yuv_emboss_setup outside of the yuv directory comes from. I hand removed Base/GemSetup.o to make sure it was rebuilt but still no go.
Any ideas ?
--Marco
Makefile.in ... if i remember allright
kurt
Marco Scoffier wrote:
On 01.06 15:08 tigital wrote:
...yuv_* isn't really supported on any platforms other than OS X, Yet...but we're working on it! You may wish to remove that directory, or change the make file so that it doesn't try to compile that stuff...
Hello,
Latest Gem cvs compiles when I removed the two references to yuv in the Makefile.
But the lib does not load:
/usr/local/src/Gem/Gem.pd_linux: /usr/local/src/Gem/Gem.pd_linux: undefined symbol: yuv_emboss_setup Gem: can't load library
In my limited knowledge about such things, I have tried several "make distclean" to make sure that I am running from a clean slate, but I can't find where the reference to yuv_emboss_setup outside of the yuv directory comes from. I hand removed Base/GemSetup.o to make sure it was rebuilt but still no go.
Any ideas ?
--Marco
PD-dev mailing list PD-dev@iem.kug.ac.at http://iem.kug.ac.at/cgi-bin/mailman/listinfo/pd-dev
On 01.06 15:08 tigital wrote:
...yuv_* isn't really supported on any platforms other than OS X, Yet...but we're working on it! You may wish to remove that directory, or change the make file so that it doesn't try to compile that stuff...
Hello,
Latest Gem cvs compiles when I removed the two references to yuv in the Makefile.
But the lib does not load:
/usr/local/src/Gem/Gem.pd_linux: /usr/local/src/Gem/Gem.pd_linux: undefined symbol: yuv_emboss_setup Gem: can't load library
In my limited knowledge about such things, I have tried several "make distclean" to make sure that I am running from a clean slate, but I can't find where the reference to yuv_emboss_setup outside of the yuv directory comes from. I hand removed Base/GemSetup.o to make sure it was rebuilt but still no go.
Any ideas ?
--Marco
hey Marco,
...each directory of objects has it's own setup file, so it seems like the yuv setup.h is still being incorporated by Base/GemSetup.cpp...so, one way around this would be to edit Base/GemSetup.cpp and comment out the following lines:
#include "../yuv/setup.h"
...and...
yuv_setup();
...then ya should be ok!
l8r, jamie
On 01.09 17:35 tigital wrote:
hey Marco,
...each directory of objects has it's own setup file, so it seems like the yuv setup.h is still being incorporated by Base/GemSetup.cpp...so, one way around this would be to edit Base/GemSetup.cpp and comment out the following lines:
#include "../yuv/setup.h"
...and...
yuv_setup();
...then ya should be ok!
Thankyou tigital and Kurt,
I used both you fixes and it works
--Marco