hello,
i just tested the current Gem git. (i'm still using on ubuntu linux 14.04, intel hd4000)
gemwin did not create. Gem/gemdefaultwindow can be created. it use gemglxwindow. (i have both gemglutwindow.pd_linux and gemglxwindow.pd_linux in /usr/local/lib/pd/extra/Gem)
sending the create message on this object did create an empty window. but sending "1" did not enable rendering, i only get : gemglxwindow: no method for 'float'
so : why did gemdefaultwindow is not named gemwin? (sould i just make a symlink?) more important : how can i enable rendering?
thanks Cyrille
Same config here (ubuntu 14.04 and intel HD4000). No problem with gemwin. All works fine with this object.
In /home/jack/Gem/, I have two symlink : - gemglxwindow.pd_linux -> /home/jack/Gem/src/Output/.libs/gemglxwindow.pd_linux - gemsdlwindow.pd_linux -> /home/jack/Gem/src/Output/.libs/gemsdlwindow.pd_linux
By default, gemdefaultwindow uses gemglxwindow. Like you, i get when i send "1" : gemglxwindow: no method for 'float' ++
Jack
Le 19/08/2014 18:11, Cyrille Henry a écrit :
hello,
i just tested the current Gem git. (i'm still using on ubuntu linux 14.04, intel hd4000)
gemwin did not create. Gem/gemdefaultwindow can be created. it use gemglxwindow. (i have both gemglutwindow.pd_linux and gemglxwindow.pd_linux in /usr/local/lib/pd/extra/Gem)
sending the create message on this object did create an empty window. but sending "1" did not enable rendering, i only get : gemglxwindow: no method for 'float'
so : why did gemdefaultwindow is not named gemwin? (sould i just make a symlink?) more important : how can i enable rendering?
thanks Cyrille
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
gemdefaultwindow accepts "bang" and not float. Something like :
[metro] | [gemdefaultwindow]
should work.
All is in Gem/abstractions/gemwin.pd ++
Jack
Le 19/08/2014 18:31, Jack a écrit :
Same config here (ubuntu 14.04 and intel HD4000). No problem with gemwin. All works fine with this object.
In /home/jack/Gem/, I have two symlink :
- gemglxwindow.pd_linux ->
/home/jack/Gem/src/Output/.libs/gemglxwindow.pd_linux
- gemsdlwindow.pd_linux ->
/home/jack/Gem/src/Output/.libs/gemsdlwindow.pd_linux
By default, gemdefaultwindow uses gemglxwindow. Like you, i get when i send "1" : gemglxwindow: no method for 'float' ++
Jack
Le 19/08/2014 18:11, Cyrille Henry a écrit :
hello,
i just tested the current Gem git. (i'm still using on ubuntu linux 14.04, intel hd4000)
gemwin did not create. Gem/gemdefaultwindow can be created. it use gemglxwindow. (i have both gemglutwindow.pd_linux and gemglxwindow.pd_linux in /usr/local/lib/pd/extra/Gem)
sending the create message on this object did create an empty window. but sending "1" did not enable rendering, i only get : gemglxwindow: no method for 'float'
so : why did gemdefaultwindow is not named gemwin? (sould i just make a symlink?) more important : how can i enable rendering?
thanks Cyrille
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256
On 2014-08-19 18:11, Cyrille Henry wrote:
hello,
i just tested the current Gem git. (i'm still using on ubuntu linux 14.04, intel hd4000)
gemwin did not create. Gem/gemdefaultwindow can be created. it use gemglxwindow. (i have both gemglutwindow.pd_linux and gemglxwindow.pd_linux in /usr/local/lib/pd/extra/Gem)
sending the create message on this object did create an empty window. but sending "1" did not enable rendering, i only get : gemglxwindow: no method for 'float'
so : why did gemdefaultwindow is not named gemwin?
that's by design.
(sould i just make a symlink?)
no. [gemwin] and [gem*window] are *not* the same.
more important : how can i enable rendering?
the design is obviously different from what you expect.
[gemdefaultwindow] (or rather it's underlying implementations like [gemglxwindow] or [gemglutwindow]) is really just a very thin wrapper around an openGL-context. all it can do is to create/destroy an openGL-context (aka window), and make that context the "current" one (so any openGL commands are exectuted within this context).
it does a lot less than [gemwin], which handles viewpoints, rendering,...
short overview:
starting with Gem-0.94 (that is: current git), [gemwin] is now an abstraction (found in abstractions/). internally it uses [gemdefaultwindow] to create/destroy/switch-to windows/contexts, which is just another abstraction that wraps the actual implementation (e.g. [gemglfw3window]), but you really need the entire [gemwin] abstraction to use Gem as you used to.
apart from separating platform-independent code (as found in the [gemwin] abstraction) and platfrom-dependent code (the actual [gem*window] backend), this also allows the user to change the behaviour of [gemwin] without needing a compiler.
conclusion: add abstractions/ to your path, so you have a proper [gemwin].
fgmasdr IOhannes
Hello,
thanks for the answer, sorry i missed that. things work lot's better now!!!
i still have few problem : - when starting pd in the Gem/ folder, it start correctlly. when starting pd in an other folder, pd segfault when loading gem_videoVLC plugin so, i just remove it : sudo rm /usr/local/lib/pd/extra/Gem/gem_videoVLC.*
- i did not try all example, but most work. i do however have some problem with Gem/examples/10.glsl/05.multitexture_bis.pd if i open and close this patch, pd segfault (even without opening a rendering window). The patch did work.
- some other shader example did not render anything unless i configure optimus to use the nvidia card. It's not a gem fault, just the intel HD and it's driver. - gemwin use to send 1 / 0 when start / stop rendering. i sometime use this to load shader, like in example Gem/examples/10.glsl/09... In this example, i have to manually load the shader. - gemmouse work, but not gemkeyname
thanks for all good work cheers c
Le 20/08/2014 10:07, IOhannes m zmoelnig a écrit :
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256
On 2014-08-19 18:11, Cyrille Henry wrote:
hello,
i just tested the current Gem git. (i'm still using on ubuntu linux 14.04, intel hd4000)
gemwin did not create. Gem/gemdefaultwindow can be created. it use gemglxwindow. (i have both gemglutwindow.pd_linux and gemglxwindow.pd_linux in /usr/local/lib/pd/extra/Gem)
sending the create message on this object did create an empty window. but sending "1" did not enable rendering, i only get : gemglxwindow: no method for 'float'
so : why did gemdefaultwindow is not named gemwin?
that's by design.
(sould i just make a symlink?)
no. [gemwin] and [gem*window] are *not* the same.
more important : how can i enable rendering?
the design is obviously different from what you expect.
[gemdefaultwindow] (or rather it's underlying implementations like [gemglxwindow] or [gemglutwindow]) is really just a very thin wrapper around an openGL-context. all it can do is to create/destroy an openGL-context (aka window), and make that context the "current" one (so any openGL commands are exectuted within this context).
it does a lot less than [gemwin], which handles viewpoints, rendering,...
short overview:
starting with Gem-0.94 (that is: current git), [gemwin] is now an abstraction (found in abstractions/). internally it uses [gemdefaultwindow] to create/destroy/switch-to windows/contexts, which is just another abstraction that wraps the actual implementation (e.g. [gemglfw3window]), but you really need the entire [gemwin] abstraction to use Gem as you used to.
apart from separating platform-independent code (as found in the [gemwin] abstraction) and platfrom-dependent code (the actual [gem*window] backend), this also allows the user to change the behaviour of [gemwin] without needing a compiler.
conclusion: add abstractions/ to your path, so you have a proper [gemwin].
fgmasdr IOhannes -----BEGIN PGP SIGNATURE----- Version: GnuPG v1
iQIcBAEBCAAGBQJT9FcmAAoJELZQGcR/ejb4rpQP/0glKKYo3uJApqsr67w4r9IL 0ElcWZbbdN4S/pTeRpuyhvsKIE8X/44THK5e9aWOxKQmEh9/vUuwxshBz+svoNSX 0D4ryLQDZyTlG2On2fWX34Xw7fTyH2oJe1AY7n2epP29BWP1Wz3bYc7De896mv5N pwCqHXhC2EPpgUAmUVd2ncEAcHd1JXjWWcxsA051bM2Vyrrc0arrNhqankhGlEV+ 4VVvIqnLG/v4F5Pgx5n79uDs0WqCv/nUhUrgRKxcX1sMLqvu9eTWEAyvSHRsY32t 13ShQiD7n1OxTDfhFdHJoPgrYdIvCV6mFhaWnxb/Wdcdgce6Sn0Q3F05HS+xFEWW 0foH3ZcM4IQ9xTkt3uKvzmqbgRGpukl+5JFTwDdmdqzVp/kBkEBM8w22KOdO7GJM InDIJj3x6fvOGZaj0HvtDRFafEHFCgfsWDkRdSzniA4EB9Yjo6sPoSYXNgH5wAfU XA7LcelfMr2Akxyz50rAv9B5oN8umn9fpRzVzr6zAusktA7B06/xNDW5esLZxd4M 3NmDZGvO9VOCCVYEB/OlpZm+8vn2hg8mF3HuTxAFoaRNiefRbacz4yDDJikSAwdJ 9ARF2/6yjK9svuzbxB0Ox6esMW0XVQ8+J5WsWzGji6ropBM8LrAKo3Klbzoz1Z0+ 9SDJk9Ep1WgXNi9sO4xc =Yp47 -----END PGP SIGNATURE-----
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
and i forget to say that i had to change in gemdefaultwindow : gemglxwindow to Gem/gemglxwindow
c
Le 20/08/2014 11:07, Cyrille Henry a écrit :
Hello,
thanks for the answer, sorry i missed that. things work lot's better now!!!
i still have few problem :
- when starting pd in the Gem/ folder, it start correctlly. when starting pd in an other folder, pd segfault when loading gem_videoVLC plugin
so, i just remove it : sudo rm /usr/local/lib/pd/extra/Gem/gem_videoVLC.*
i did not try all example, but most work. i do however have some problem with Gem/examples/10.glsl/05.multitexture_bis.pd if i open and close this patch, pd segfault (even without opening a rendering window). The patch did work.
some other shader example did not render anything unless i configure optimus to use the nvidia card. It's not a gem fault, just the intel HD and it's driver.
gemwin use to send 1 / 0 when start / stop rendering. i sometime use this to load shader, like in example Gem/examples/10.glsl/09... In this example, i have to manually load the shader.
gemmouse work, but not gemkeyname
thanks for all good work cheers c
Le 20/08/2014 10:07, IOhannes m zmoelnig a écrit :
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256
On 2014-08-19 18:11, Cyrille Henry wrote:
hello,
i just tested the current Gem git. (i'm still using on ubuntu linux 14.04, intel hd4000)
gemwin did not create. Gem/gemdefaultwindow can be created. it use gemglxwindow. (i have both gemglutwindow.pd_linux and gemglxwindow.pd_linux in /usr/local/lib/pd/extra/Gem)
sending the create message on this object did create an empty window. but sending "1" did not enable rendering, i only get : gemglxwindow: no method for 'float'
so : why did gemdefaultwindow is not named gemwin?
that's by design.
(sould i just make a symlink?)
no. [gemwin] and [gem*window] are *not* the same.
more important : how can i enable rendering?
the design is obviously different from what you expect.
[gemdefaultwindow] (or rather it's underlying implementations like [gemglxwindow] or [gemglutwindow]) is really just a very thin wrapper around an openGL-context. all it can do is to create/destroy an openGL-context (aka window), and make that context the "current" one (so any openGL commands are exectuted within this context).
it does a lot less than [gemwin], which handles viewpoints, rendering,...
short overview:
starting with Gem-0.94 (that is: current git), [gemwin] is now an abstraction (found in abstractions/). internally it uses [gemdefaultwindow] to create/destroy/switch-to windows/contexts, which is just another abstraction that wraps the actual implementation (e.g. [gemglfw3window]), but you really need the entire [gemwin] abstraction to use Gem as you used to.
apart from separating platform-independent code (as found in the [gemwin] abstraction) and platfrom-dependent code (the actual [gem*window] backend), this also allows the user to change the behaviour of [gemwin] without needing a compiler.
conclusion: add abstractions/ to your path, so you have a proper [gemwin].
fgmasdr IOhannes -----BEGIN PGP SIGNATURE----- Version: GnuPG v1
iQIcBAEBCAAGBQJT9FcmAAoJELZQGcR/ejb4rpQP/0glKKYo3uJApqsr67w4r9IL 0ElcWZbbdN4S/pTeRpuyhvsKIE8X/44THK5e9aWOxKQmEh9/vUuwxshBz+svoNSX 0D4ryLQDZyTlG2On2fWX34Xw7fTyH2oJe1AY7n2epP29BWP1Wz3bYc7De896mv5N pwCqHXhC2EPpgUAmUVd2ncEAcHd1JXjWWcxsA051bM2Vyrrc0arrNhqankhGlEV+ 4VVvIqnLG/v4F5Pgx5n79uDs0WqCv/nUhUrgRKxcX1sMLqvu9eTWEAyvSHRsY32t 13ShQiD7n1OxTDfhFdHJoPgrYdIvCV6mFhaWnxb/Wdcdgce6Sn0Q3F05HS+xFEWW 0foH3ZcM4IQ9xTkt3uKvzmqbgRGpukl+5JFTwDdmdqzVp/kBkEBM8w22KOdO7GJM InDIJj3x6fvOGZaj0HvtDRFafEHFCgfsWDkRdSzniA4EB9Yjo6sPoSYXNgH5wAfU XA7LcelfMr2Akxyz50rAv9B5oN8umn9fpRzVzr6zAusktA7B06/xNDW5esLZxd4M 3NmDZGvO9VOCCVYEB/OlpZm+8vn2hg8mF3HuTxAFoaRNiefRbacz4yDDJikSAwdJ 9ARF2/6yjK9svuzbxB0Ox6esMW0XVQ8+J5WsWzGji6ropBM8LrAKo3Klbzoz1Z0+ 9SDJk9Ep1WgXNi9sO4xc =Yp47 -----END PGP SIGNATURE-----
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
Le 20/08/2014 11:07, Cyrille Henry a écrit :
Hello,
thanks for the answer, sorry i missed that. things work lot's better now!!!
i still have few problem :
- when starting pd in the Gem/ folder, it start correctlly.
when starting pd in an other folder, pd segfault when loading
gem_videoVLC plugin
so, i just remove it : sudo rm /usr/local/lib/pd/extra/Gem/gem_videoVLC.*
Yep, there is conflict between libvlc and other libraries.
- i did not try all example, but most work. i do however have some
problem with Gem/examples/10.glsl/05.multitexture_bis.pd
if i open and close this patch, pd segfault (even without opening
a rendering window). The patch did work.
The problem seems to be [glsl_program]. An exemple patch is attached ;)
- some other shader example did not render anything unless i configure
optimus to use the nvidia card. It's not a gem fault, just the intel HD and it's driver.
Yep. But I also notice [gemframebuffer] with IntelHD doesn't like [format RGB32(. For exemple, in Gem/examples/10.glsl/09... it is possible to change [format RGB32( to [format RGB( to have something working on IntelHD. Maybe it is possible to add a comment in the patch (or add a new message) to explain how to make this patch working on IntelHD ?
- gemwin use to send 1 / 0 when start / stop rendering. i sometime use this to load shader, like
in example Gem/examples/10.glsl/09... In this example, i have to manually load the shader.
I just create a patch with :
[gemhead] | [route gem_state] | [print]
and there is no more 0/1 in pd console when you create or destroy gemwin. On my side, i only use [loadbang] to load vertex/geometry/fragment shaders.
- gemmouse work, but not gemkeyname
[gemkeyboard] doesn't work too. ++
Jack
PS : i just notice that i am working with Gem from http://github.com/umlaeute/Gem. I will try with Gem from git://pd-gem.git.sourceforge.net/gitroot/pd-gem/Gem ...
thanks for all good work cheers c
Le 20/08/2014 10:07, IOhannes m zmoelnig a écrit : On 2014-08-19 18:11, Cyrille Henry wrote:
hello,
i just tested the current Gem git. (i'm still using on ubuntu linux 14.04, intel hd4000)
gemwin did not create. Gem/gemdefaultwindow can be created. it use gemglxwindow. (i have both gemglutwindow.pd_linux and gemglxwindow.pd_linux in /usr/local/lib/pd/extra/Gem)
sending the create message on this object did create an empty window. but sending "1" did not enable rendering, i only get : gemglxwindow: no method for 'float'
so : why did gemdefaultwindow is not named gemwin?
that's by design.
(sould i just make a symlink?)
no. [gemwin] and [gem*window] are *not* the same.
more important : how can i enable rendering?
the design is obviously different from what you expect.
[gemdefaultwindow] (or rather it's underlying implementations like [gemglxwindow] or [gemglutwindow]) is really just a very thin wrapper around an openGL-context. all it can do is to create/destroy an openGL-context (aka window), and make that context the "current" one (so any openGL commands are exectuted within this context).
it does a lot less than [gemwin], which handles viewpoints, rendering,...
short overview:
starting with Gem-0.94 (that is: current git), [gemwin] is now an abstraction (found in abstractions/). internally it uses [gemdefaultwindow] to create/destroy/switch-to windows/contexts, which is just another abstraction that wraps the actual implementation (e.g. [gemglfw3window]), but you really need the entire [gemwin] abstraction to use Gem as you used to.
apart from separating platform-independent code (as found in the [gemwin] abstraction) and platfrom-dependent code (the actual [gem*window] backend), this also allows the user to change the behaviour of [gemwin] without needing a compiler.
conclusion: add abstractions/ to your path, so you have a proper [gemwin].
fgmasdr IOhannes
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
Just try with Gem from git://pd-gem.git.sourceforge.net/gitroot/pd-gem/Gem.
[glsl_program] works fine. Gem/examples/10.glsl/09 works fine. (get 0/1 from message gem_state so vertex and fragment shaders are loaded)
But i still get pd crash with libvlc.
[gemkeyname] and [gemkeyboard] work fine with object [gemwin] but not with abstraction [abstractions/gemwin].
++
Jack
Le 20/08/2014 13:39, Jack a écrit :
Le 20/08/2014 11:07, Cyrille Henry a écrit :
Hello,
thanks for the answer, sorry i missed that. things work lot's better now!!!
i still have few problem :
- when starting pd in the Gem/ folder, it start correctlly.
when starting pd in an other folder, pd segfault when loading
gem_videoVLC plugin
so, i just remove it : sudo rm
/usr/local/lib/pd/extra/Gem/gem_videoVLC.*
Yep, there is conflict between libvlc and other libraries.
- i did not try all example, but most work. i do however have some
problem with Gem/examples/10.glsl/05.multitexture_bis.pd
if i open and close this patch, pd segfault (even without
opening a rendering window). The patch did work.
The problem seems to be [glsl_program]. An exemple patch is attached ;)
- some other shader example did not render anything unless i
configure optimus to use the nvidia card. It's not a gem fault, just the intel HD and it's driver.
Yep. But I also notice [gemframebuffer] with IntelHD doesn't like [format RGB32(. For exemple, in Gem/examples/10.glsl/09... it is possible to change [format RGB32( to [format RGB( to have something working on IntelHD. Maybe it is possible to add a comment in the patch (or add a new message) to explain how to make this patch working on IntelHD ?
- gemwin use to send 1 / 0 when start / stop rendering. i sometime use this to load shader, like
in example Gem/examples/10.glsl/09... In this example, i have to manually load the shader.
I just create a patch with :
[gemhead] | [route gem_state] | [print]
and there is no more 0/1 in pd console when you create or destroy gemwin. On my side, i only use [loadbang] to load vertex/geometry/fragment shaders.
- gemmouse work, but not gemkeyname
[gemkeyboard] doesn't work too. ++
Jack
PS : i just notice that i am working with Gem from http://github.com/umlaeute/Gem. I will try with Gem from git://pd-gem.git.sourceforge.net/gitroot/pd-gem/Gem ...
thanks for all good work cheers c
Le 20/08/2014 10:07, IOhannes m zmoelnig a écrit : On 2014-08-19 18:11, Cyrille Henry wrote:
hello,
i just tested the current Gem git. (i'm still using on ubuntu linux 14.04, intel hd4000)
gemwin did not create. Gem/gemdefaultwindow can be created. it use gemglxwindow. (i have both gemglutwindow.pd_linux and gemglxwindow.pd_linux in /usr/local/lib/pd/extra/Gem)
sending the create message on this object did create an empty window. but sending "1" did not enable rendering, i only get : gemglxwindow: no method for 'float'
so : why did gemdefaultwindow is not named gemwin?
that's by design.
(sould i just make a symlink?)
no. [gemwin] and [gem*window] are *not* the same.
more important : how can i enable rendering?
the design is obviously different from what you expect.
[gemdefaultwindow] (or rather it's underlying implementations like [gemglxwindow] or [gemglutwindow]) is really just a very thin wrapper around an openGL-context. all it can do is to create/destroy an openGL-context (aka window), and make that context the "current" one (so any openGL commands are exectuted within this context).
it does a lot less than [gemwin], which handles viewpoints, rendering,...
short overview:
starting with Gem-0.94 (that is: current git), [gemwin] is now an abstraction (found in abstractions/). internally it uses [gemdefaultwindow] to create/destroy/switch-to windows/contexts, which is just another abstraction that wraps the actual implementation (e.g. [gemglfw3window]), but you really need the entire [gemwin] abstraction to use Gem as you used to.
apart from separating platform-independent code (as found in the [gemwin] abstraction) and platfrom-dependent code (the actual [gem*window] backend), this also allows the user to change the behaviour of [gemwin] without needing a compiler.
conclusion: add abstractions/ to your path, so you have a proper [gemwin].
fgmasdr IOhannes
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
2014-08-20 13:52 GMT+02:00 Jack jack@rybn.org:
Just try with Gem from git:// pd-gem.git.sourceforge.net/gitroot/pd-gem/Gem.
this is the (too) old repo, up-to-date code is here : git:// git.code.sf.net/p/pd-gem/gem please try with that
+ a
[glsl_program] works fine. Gem/examples/10.glsl/09 works fine. (get 0/1 from message gem_state so vertex and fragment shaders are loaded)
But i still get pd crash with libvlc.
[gemkeyname] and [gemkeyboard] work fine with object [gemwin] but not with abstraction [abstractions/gemwin].
++
Jack
Le 20/08/2014 13:39, Jack a écrit :
Le 20/08/2014 11:07, Cyrille Henry a écrit :
Hello,
thanks for the answer, sorry i missed that. things work lot's better now!!!
i still have few problem :
- when starting pd in the Gem/ folder, it start correctlly.
when starting pd in an other folder, pd segfault when loading
gem_videoVLC plugin
so, i just remove it : sudo rm /usr/local/lib/pd/extra/Gem/gem_videoVLC.*
Yep, there is conflict between libvlc and other libraries.
- i did not try all example, but most work. i do however have some
problem with Gem/examples/10.glsl/05.multitexture_bis.pd
if i open and close this patch, pd segfault (even without opening a
rendering window). The patch did work.
The problem seems to be [glsl_program]. An exemple patch is attached ;)
- some other shader example did not render anything unless i configure
optimus to use the nvidia card. It's not a gem fault, just the intel HD and it's driver.
Yep. But I also notice [gemframebuffer] with IntelHD doesn't like [format RGB32(. For exemple, in Gem/examples/10.glsl/09... it is possible to change [format RGB32( to [format RGB( to have something working on IntelHD. Maybe it is possible to add a comment in the patch (or add a new message) to explain how to make this patch working on IntelHD ?
- gemwin use to send 1 / 0 when start / stop rendering. i sometime use
this to load shader, like in example Gem/examples/10.glsl/09... In this example, i have to manually load the shader.
I just create a patch with :
[gemhead] | [route gem_state] | [print]
and there is no more 0/1 in pd console when you create or destroy gemwin. On my side, i only use [loadbang] to load vertex/geometry/fragment shaders.
- gemmouse work, but not gemkeyname
[gemkeyboard] doesn't work too. ++
Jack
PS : i just notice that i am working with Gem from http://github.com/umlaeute/Gem. I will try with Gem from git:// pd-gem.git.sourceforge.net/gitroot/pd-gem/Gem ...
thanks for all good work cheers c
Le 20/08/2014 10:07, IOhannes m zmoelnig a écrit :
On 2014-08-19 18:11, Cyrille Henry wrote:
hello,
i just tested the current Gem git. (i'm still using on ubuntu linux 14.04, intel hd4000)
gemwin did not create. Gem/gemdefaultwindow can be created. it use gemglxwindow. (i have both gemglutwindow.pd_linux and gemglxwindow.pd_linux in /usr/local/lib/pd/extra/Gem)
sending the create message on this object did create an empty window. but sending "1" did not enable rendering, i only get : gemglxwindow: no method for 'float'
so : why did gemdefaultwindow is not named gemwin?
that's by design.
(sould i just make a symlink?)
no. [gemwin] and [gem*window] are *not* the same.
more important : how can i enable rendering?
the design is obviously different from what you expect.
[gemdefaultwindow] (or rather it's underlying implementations like [gemglxwindow] or [gemglutwindow]) is really just a very thin wrapper around an openGL-context. all it can do is to create/destroy an openGL-context (aka window), and make that context the "current" one (so any openGL commands are exectuted within this context).
it does a lot less than [gemwin], which handles viewpoints, rendering,...
short overview:
starting with Gem-0.94 (that is: current git), [gemwin] is now an abstraction (found in abstractions/). internally it uses [gemdefaultwindow] to create/destroy/switch-to windows/contexts, which is just another abstraction that wraps the actual implementation (e.g. [gemglfw3window]), but you really need the entire [gemwin] abstraction to use Gem as you used to.
apart from separating platform-independent code (as found in the [gemwin] abstraction) and platfrom-dependent code (the actual [gem*window] backend), this also allows the user to change the behaviour of [gemwin] without needing a compiler.
conclusion: add abstractions/ to your path, so you have a proper [gemwin].
fgmasdr IOhannes
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
GEM-dev mailing listGEM-dev@lists.iem.athttp://lists.puredata.info/listinfo/gem-dev
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
Le 20/08/2014 14:58, Antoine Villeret a écrit :
2014-08-20 13:52 GMT+02:00 Jack <jack@rybn.org mailto:jack@rybn.org>:
Just try with Gem from git://pd-gem.git.sourceforge.net/gitroot/pd-gem/Gem <http://pd-gem.git.sourceforge.net/gitroot/pd-gem/Gem>.
this is the (too) old repo, up-to-date code is here : git://git.code.sf.net/p/pd-gem/gem http://git.code.sf.net/p/pd-gem/gem please try with that
OK, i remove it and change adress. Thanx. ++
Jack
a
[glsl_program] works fine. Gem/examples/10.glsl/09 works fine. (get 0/1 from message gem_state so vertex and fragment shaders are loaded) But i still get pd crash with libvlc. [gemkeyname] and [gemkeyboard] work fine with object [gemwin] but not with abstraction [abstractions/gemwin]. ++ Jack Le 20/08/2014 13:39, Jack a écrit :
Le 20/08/2014 11:07, Cyrille Henry a écrit : > Hello, > > thanks for the answer, sorry i missed that. > things work lot's better now!!! > > i still have few problem : > - when starting pd in the Gem/ folder, it start correctlly. > when starting pd in an other folder, pd segfault when loading gem_videoVLC plugin > so, i just remove it : sudo rm /usr/local/lib/pd/extra/Gem/gem_videoVLC.* Yep, there is conflict between libvlc and other libraries. > > - i did not try all example, but most work. i do however have some problem with Gem/examples/10.glsl/05.multitexture_bis.pd > if i open and close this patch, pd segfault (even without opening a rendering window). The patch did work. The problem seems to be [glsl_program]. An exemple patch is attached ;) > > - some other shader example did not render anything unless i configure optimus to use the nvidia card. It's not a gem fault, just the intel HD and it's driver. Yep. But I also notice [gemframebuffer] with IntelHD doesn't like [format RGB32(. For exemple, in Gem/examples/10.glsl/09... it is possible to change [format RGB32( to [format RGB( to have something working on IntelHD. Maybe it is possible to add a comment in the patch (or add a new message) to explain how to make this patch working on IntelHD ? > - gemwin use to send 1 / 0 when start / stop rendering. i sometime use this to load shader, like in example Gem/examples/10.glsl/09... In this example, i have to manually load the shader. I just create a patch with : [gemhead] | [route gem_state] | [print] and there is no more 0/1 in pd console when you create or destroy gemwin. On my side, i only use [loadbang] to load vertex/geometry/fragment shaders. > - gemmouse work, but not gemkeyname [gemkeyboard] doesn't work too. ++ Jack PS : i just notice that i am working with Gem from http://github.com/umlaeute/Gem. I will try with Gem from git://pd-gem.git.sourceforge.net/gitroot/pd-gem/Gem <http://pd-gem.git.sourceforge.net/gitroot/pd-gem/Gem> ... > > thanks for all good work > cheers > c > > Le 20/08/2014 10:07, IOhannes m zmoelnig a écrit :
On 2014-08-19 18:11, Cyrille Henry wrote: >>> hello, >>> >>> i just tested the current Gem git. (i'm still using on ubuntu linux >>> 14.04, intel hd4000) >>> >>> gemwin did not create. Gem/gemdefaultwindow can be created. it use >>> gemglxwindow. (i have both gemglutwindow.pd_linux and >>> gemglxwindow.pd_linux in /usr/local/lib/pd/extra/Gem) >>> >>> sending the create message on this object did create an empty >>> window. but sending "1" did not enable rendering, i only get : >>> gemglxwindow: no method for 'float' >>> >>> so : why did gemdefaultwindow is not named gemwin? that's by design. >>> (sould i just make a symlink?) no. [gemwin] and [gem*window] are *not* the same. >>> more important : how can i enable rendering? the design is obviously different from what you expect. [gemdefaultwindow] (or rather it's underlying implementations like [gemglxwindow] or [gemglutwindow]) is really just a very thin wrapper around an openGL-context. all it can do is to create/destroy an openGL-context (aka window), and make that context the "current" one (so any openGL commands are exectuted within this context). it does a lot less than [gemwin], which handles viewpoints, rendering,... short overview: starting with Gem-0.94 (that is: current git), [gemwin] is now an abstraction (found in abstractions/). internally it uses [gemdefaultwindow] to create/destroy/switch-to windows/contexts, which is just another abstraction that wraps the actual implementation (e.g. [gemglfw3window]), but you really need the entire [gemwin] abstraction to use Gem as you used to. apart from separating platform-independent code (as found in the [gemwin] abstraction) and platfrom-dependent code (the actual [gem*window] backend), this also allows the user to change the behaviour of [gemwin] without needing a compiler. conclusion: add abstractions/ to your path, so you have a proper [gemwin]. fgmasdr IOhannes
>> >> _______________________________________________ >> GEM-dev mailing list >> GEM-dev@lists.iem.at <mailto:GEM-dev@lists.iem.at> >> http://lists.puredata.info/listinfo/gem-dev >> > > _______________________________________________ > GEM-dev mailing list > GEM-dev@lists.iem.at <mailto:GEM-dev@lists.iem.at> > http://lists.puredata.info/listinfo/gem-dev _______________________________________________ GEM-dev mailing list GEM-dev@lists.iem.at <mailto:GEM-dev@lists.iem.at> http://lists.puredata.info/listinfo/gem-dev
_______________________________________________ GEM-dev mailing list GEM-dev@lists.iem.at <mailto:GEM-dev@lists.iem.at> http://lists.puredata.info/listinfo/gem-dev
OK, now i work with the repository : git://git.code.sf.net/p/pd-gem/gem http://git.code.sf.net/p/pd-gem/gem
No more [gemwin] object but [gemwin] abstraction. => need to add path to .../Gem/abstractions/ or create [abstractions/gemwin]. Problem with [glsl_program] => pd crash when i close the patch or if i try to re-create the [glsl_program] object (test.pd patch attached). No more [gem_state 0/1( message from [gemhead] => problem with patch using it to initialize objects (for exemple : Gem/examples/10.glsl/09.vertex_texture_fetching.pd need mouse to open shaders). Still crash with libvlc => need to remove or change name of gem_videoVLC.so. [gemkeyname] and [gemkeyboard] doesn't work => need abstractions (abstractions attached). ++
Jack
Le 20/08/2014 15:44, Jack a écrit :
Le 20/08/2014 14:58, Antoine Villeret a écrit :
2014-08-20 13:52 GMT+02:00 Jack <jack@rybn.org mailto:jack@rybn.org>:
Just try with Gem from
git://pd-gem.git.sourceforge.net/gitroot/pd-gem/Gem http://pd-gem.git.sourceforge.net/gitroot/pd-gem/Gem.
this is the (too) old repo, up-to-date code is here :
git://git.code.sf.net/p/pd-gem/gem http://git.code.sf.net/p/pd-gem/gem
please try with that
OK, i remove it and change adress. Thanx. ++
Jack
a
[glsl_program] works fine. Gem/examples/10.glsl/09 works fine. (get 0/1 from message
gem_state so vertex and fragment shaders are loaded)
But i still get pd crash with libvlc. [gemkeyname] and [gemkeyboard] work fine with object [gemwin] but
not with abstraction [abstractions/gemwin].
++ Jack Le 20/08/2014 13:39, Jack a écrit :
Le 20/08/2014 11:07, Cyrille Henry a écrit : > Hello, > > thanks for the answer, sorry i missed that. > things work lot's better now!!! > > i still have few problem : > - when starting pd in the Gem/ folder, it start correctlly. > when starting pd in an other folder, pd segfault when loading
gem_videoVLC plugin
> so, i just remove it : sudo rm
/usr/local/lib/pd/extra/Gem/gem_videoVLC.*
Yep, there is conflict between libvlc and other libraries. > > - i did not try all example, but most work. i do however have
some problem with Gem/examples/10.glsl/05.multitexture_bis.pd
> if i open and close this patch, pd segfault (even without
opening a rendering window). The patch did work.
The problem seems to be [glsl_program]. An exemple patch is
attached ;)
> > - some other shader example did not render anything unless i
configure optimus to use the nvidia card. It's not a gem fault, just the intel HD and it's driver.
Yep. But I also notice [gemframebuffer] with IntelHD doesn't like
[format RGB32(.
For exemple, in Gem/examples/10.glsl/09... it is possible to
change [format RGB32( to [format RGB( to have something working on IntelHD. Maybe it is possible to add a comment in the patch (or add a new message) to explain how to make this patch working on IntelHD ?
> - gemwin use to send 1 / 0 when start / stop rendering. i
sometime use this to load shader, like in example Gem/examples/10.glsl/09... In this example, i have to manually load the shader.
I just create a patch with : [gemhead] | [route gem_state] | [print] and there is no more 0/1 in pd console when you create or
destroy gemwin.
On my side, i only use [loadbang] to load
vertex/geometry/fragment shaders.
> - gemmouse work, but not gemkeyname [gemkeyboard] doesn't work too. ++ Jack PS : i just notice that i am working with Gem from
http://github.com/umlaeute/Gem.
I will try with Gem from
git://pd-gem.git.sourceforge.net/gitroot/pd-gem/Gem http://pd-gem.git.sourceforge.net/gitroot/pd-gem/Gem ...
> > thanks for all good work > cheers > c > > Le 20/08/2014 10:07, IOhannes m zmoelnig a écrit :
On 2014-08-19 18:11, Cyrille Henry wrote: >>> hello, >>> >>> i just tested the current Gem git. (i'm still using on
ubuntu linux
>>> 14.04, intel hd4000) >>> >>> gemwin did not create. Gem/gemdefaultwindow can be created.
it use
>>> gemglxwindow. (i have both gemglutwindow.pd_linux and >>> gemglxwindow.pd_linux in /usr/local/lib/pd/extra/Gem) >>> >>> sending the create message on this object did create an empty >>> window. but sending "1" did not enable rendering, i only get : >>> gemglxwindow: no method for 'float' >>> >>> so : why did gemdefaultwindow is not named gemwin? that's by design. >>> (sould i just make a symlink?) no. [gemwin] and [gem*window] are *not* the same. >>> more important : how can i enable rendering? the design is obviously different from what you expect. [gemdefaultwindow] (or rather it's underlying implementations like [gemglxwindow] or [gemglutwindow]) is really just a very thin
wrapper
around an openGL-context. all it can do is to create/destroy an openGL-context (aka
window), and
make that context the "current" one (so any openGL commands are exectuted within this context). it does a lot less than [gemwin], which handles viewpoints,
rendering,...
short overview: starting with Gem-0.94 (that is: current git), [gemwin] is now an abstraction (found in abstractions/). internally it uses [gemdefaultwindow] to create/destroy/switch-to windows/contexts, which is just another abstraction that wraps the actual implementation (e.g. [gemglfw3window]), but you really
need the
entire [gemwin] abstraction to use Gem as you used to. apart from separating platform-independent code (as found in the [gemwin] abstraction) and platfrom-dependent code (the actual [gem*window] backend), this also allows the user to change the behaviour of [gemwin] without needing a compiler. conclusion: add abstractions/ to your path, so you have a proper [gemwin]. fgmasdr IOhannes
>> >> _______________________________________________ >> GEM-dev mailing list >> GEM-dev@lists.iem.at <mailto:GEM-dev@lists.iem.at> >> http://lists.puredata.info/listinfo/gem-dev >> > > _______________________________________________ > GEM-dev mailing list > GEM-dev@lists.iem.at <mailto:GEM-dev@lists.iem.at> > http://lists.puredata.info/listinfo/gem-dev _______________________________________________ GEM-dev mailing list GEM-dev@lists.iem.at <mailto:GEM-dev@lists.iem.at> http://lists.puredata.info/listinfo/gem-dev
_______________________________________________ GEM-dev mailing list GEM-dev@lists.iem.at <mailto:GEM-dev@lists.iem.at> http://lists.puredata.info/listinfo/gem-dev
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
Le 20/08/2014 13:52, Jack a écrit :
Just try with Gem from git://pd-gem.git.sourceforge.net/gitroot/pd-gem/Gem.
[glsl_program] works fine. Gem/examples/10.glsl/09 works fine. (get 0/1 from message gem_state so vertex and fragment shaders are loaded)
But i still get pd crash with libvlc.
[gemkeyname] and [gemkeyboard] work fine with object [gemwin] but not with abstraction [abstractions/gemwin].
did you "make clean"? i'm surprised that you get the gemwin object. c
++
Jack
Le 20/08/2014 13:39, Jack a écrit :
Le 20/08/2014 11:07, Cyrille Henry a écrit :
Hello,
thanks for the answer, sorry i missed that. things work lot's better now!!!
i still have few problem :
- when starting pd in the Gem/ folder, it start correctlly.
when starting pd in an other folder, pd segfault when loading gem_videoVLC plugin so, i just remove it : sudo rm /usr/local/lib/pd/extra/Gem/gem_videoVLC.*
Yep, there is conflict between libvlc and other libraries.
- i did not try all example, but most work. i do however have some problem with Gem/examples/10.glsl/05.multitexture_bis.pd if i open and close this patch, pd segfault (even without opening a rendering window). The patch did work.
The problem seems to be [glsl_program]. An exemple patch is attached ;)
- some other shader example did not render anything unless i configure optimus to use the nvidia card. It's not a gem fault, just the intel HD and it's driver.
Yep. But I also notice [gemframebuffer] with IntelHD doesn't like [format RGB32(. For exemple, in Gem/examples/10.glsl/09... it is possible to change [format RGB32( to [format RGB( to have something working on IntelHD. Maybe it is possible to add a comment in the patch (or add a new message) to explain how to make this patch working on IntelHD ?
- gemwin use to send 1 / 0 when start / stop rendering. i sometime use this to load shader, like in example Gem/examples/10.glsl/09... In this example, i have to manually load the shader.
I just create a patch with :
[gemhead] | [route gem_state] | [print]
and there is no more 0/1 in pd console when you create or destroy gemwin. On my side, i only use [loadbang] to load vertex/geometry/fragment shaders.
- gemmouse work, but not gemkeyname
[gemkeyboard] doesn't work too. ++
Jack
PS : i just notice that i am working with Gem from http://github.com/umlaeute/Gem. I will try with Gem from git://pd-gem.git.sourceforge.net/gitroot/pd-gem/Gem ...
thanks for all good work cheers c
Le 20/08/2014 10:07, IOhannes m zmoelnig a écrit : On 2014-08-19 18:11, Cyrille Henry wrote:
hello,
i just tested the current Gem git. (i'm still using on ubuntu linux 14.04, intel hd4000)
gemwin did not create. Gem/gemdefaultwindow can be created. it use gemglxwindow. (i have both gemglutwindow.pd_linux and gemglxwindow.pd_linux in /usr/local/lib/pd/extra/Gem)
sending the create message on this object did create an empty window. but sending "1" did not enable rendering, i only get : gemglxwindow: no method for 'float'
so : why did gemdefaultwindow is not named gemwin?
that's by design.
(sould i just make a symlink?)
no. [gemwin] and [gem*window] are *not* the same.
more important : how can i enable rendering?
the design is obviously different from what you expect.
[gemdefaultwindow] (or rather it's underlying implementations like [gemglxwindow] or [gemglutwindow]) is really just a very thin wrapper around an openGL-context. all it can do is to create/destroy an openGL-context (aka window), and make that context the "current" one (so any openGL commands are exectuted within this context).
it does a lot less than [gemwin], which handles viewpoints, rendering,...
short overview:
starting with Gem-0.94 (that is: current git), [gemwin] is now an abstraction (found in abstractions/). internally it uses [gemdefaultwindow] to create/destroy/switch-to windows/contexts, which is just another abstraction that wraps the actual implementation (e.g. [gemglfw3window]), but you really need the entire [gemwin] abstraction to use Gem as you used to.
apart from separating platform-independent code (as found in the [gemwin] abstraction) and platfrom-dependent code (the actual [gem*window] backend), this also allows the user to change the behaviour of [gemwin] without needing a compiler.
conclusion: add abstractions/ to your path, so you have a proper [gemwin].
fgmasdr IOhannes
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
Le 20/08/2014 15:25, Cyrille Henry a écrit :
Le 20/08/2014 13:52, Jack a écrit :
Just try with Gem from git://pd-gem.git.sourceforge.net/gitroot/pd-gem/Gem.
[glsl_program] works fine. Gem/examples/10.glsl/09 works fine. (get 0/1 from message gem_state so vertex and fragment shaders are loaded)
But i still get pd crash with libvlc.
[gemkeyname] and [gemkeyboard] work fine with object [gemwin] but not with abstraction [abstractions/gemwin].
did you "make clean"? i'm surprised that you get the gemwin object.
It was with the old repository, i will try with the new one : git://git.code.sf.net/p/pd-gem/gem http://git.code.sf.net/p/pd-gem/gem ++
Jack
c
++
Jack
Le 20/08/2014 13:39, Jack a écrit :
Le 20/08/2014 11:07, Cyrille Henry a écrit :
Hello,
thanks for the answer, sorry i missed that. things work lot's better now!!!
i still have few problem :
- when starting pd in the Gem/ folder, it start correctlly.
when starting pd in an other folder, pd segfault when loading
gem_videoVLC plugin
so, i just remove it : sudo rm
/usr/local/lib/pd/extra/Gem/gem_videoVLC.*
Yep, there is conflict between libvlc and other libraries.
- i did not try all example, but most work. i do however have some
problem with Gem/examples/10.glsl/05.multitexture_bis.pd
if i open and close this patch, pd segfault (even without
opening a rendering window). The patch did work.
The problem seems to be [glsl_program]. An exemple patch is attached ;)
- some other shader example did not render anything unless i
configure optimus to use the nvidia card. It's not a gem fault, just the intel HD and it's driver.
Yep. But I also notice [gemframebuffer] with IntelHD doesn't like [format RGB32(. For exemple, in Gem/examples/10.glsl/09... it is possible to change [format RGB32( to [format RGB( to have something working on IntelHD. Maybe it is possible to add a comment in the patch (or add a new message) to explain how to make this patch working on IntelHD ?
- gemwin use to send 1 / 0 when start / stop rendering. i
sometime use this to load shader, like in example Gem/examples/10.glsl/09... In this example, i have to manually load the shader.
I just create a patch with :
[gemhead] | [route gem_state] | [print]
and there is no more 0/1 in pd console when you create or destroy gemwin. On my side, i only use [loadbang] to load vertex/geometry/fragment shaders.
- gemmouse work, but not gemkeyname
[gemkeyboard] doesn't work too. ++
Jack
PS : i just notice that i am working with Gem from http://github.com/umlaeute/Gem. I will try with Gem from git://pd-gem.git.sourceforge.net/gitroot/pd-gem/Gem ...
thanks for all good work cheers c
Le 20/08/2014 10:07, IOhannes m zmoelnig a écrit : On 2014-08-19 18:11, Cyrille Henry wrote:
> hello, > > i just tested the current Gem git. (i'm still using on ubuntu
linux
> 14.04, intel hd4000) > > gemwin did not create. Gem/gemdefaultwindow can be created. it use > gemglxwindow. (i have both gemglutwindow.pd_linux and > gemglxwindow.pd_linux in /usr/local/lib/pd/extra/Gem) > > sending the create message on this object did create an empty > window. but sending "1" did not enable rendering, i only get : > gemglxwindow: no method for 'float' > > so : why did gemdefaultwindow is not named gemwin?
that's by design.
> (sould i just make a symlink?)
no. [gemwin] and [gem*window] are *not* the same.
> more important : how can i enable rendering?
the design is obviously different from what you expect.
[gemdefaultwindow] (or rather it's underlying implementations like [gemglxwindow] or [gemglutwindow]) is really just a very thin wrapper around an openGL-context. all it can do is to create/destroy an openGL-context (aka window), and make that context the "current" one (so any openGL commands are exectuted within this context).
it does a lot less than [gemwin], which handles viewpoints, rendering,...
short overview:
starting with Gem-0.94 (that is: current git), [gemwin] is now an abstraction (found in abstractions/). internally it uses [gemdefaultwindow] to create/destroy/switch-to windows/contexts, which is just another abstraction that wraps the actual implementation (e.g. [gemglfw3window]), but you really need the entire [gemwin] abstraction to use Gem as you used to.
apart from separating platform-independent code (as found in the [gemwin] abstraction) and platfrom-dependent code (the actual [gem*window] backend), this also allows the user to change the behaviour of [gemwin] without needing a compiler.
conclusion: add abstractions/ to your path, so you have a proper [gemwin].
fgmasdr IOhannes
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
Le 20/08/2014 13:39, Jack a écrit :
Le 20/08/2014 11:07, Cyrille Henry a écrit :
Hello,
thanks for the answer, sorry i missed that. things work lot's better now!!!
i still have few problem :
- when starting pd in the Gem/ folder, it start correctlly.
when starting pd in an other folder, pd segfault when loading gem_videoVLC plugin so, i just remove it : sudo rm /usr/local/lib/pd/extra/Gem/gem_videoVLC.*
Yep, there is conflict between libvlc and other libraries.
- i did not try all example, but most work. i do however have some problem with Gem/examples/10.glsl/05.multitexture_bis.pd if i open and close this patch, pd segfault (even without opening a rendering window). The patch did work.
The problem seems to be [glsl_program]. An exemple patch is attached ;)
As antoine point out, this is a known bug when rendering is not enable that i was not aware. but with this example it crash also if the gemwindow was created. This is specific to this example.
- some other shader example did not render anything unless i configure optimus to use the nvidia card. It's not a gem fault, just the intel HD and it's driver.
Yep. But I also notice [gemframebuffer] with IntelHD doesn't like [format RGB32(.
that's why RGBA32 was created
For exemple, in Gem/examples/10.glsl/09... it is possible to change [format RGB32( to [format RGB( to have something working on IntelHD. Maybe it is possible to add a comment in the patch (or add a new message) to explain how to make this patch working on IntelHD ?
all glsl path are old and should be clenaned a bit. but on some nvidia, i had problem with RGBA32, so RGBA32 is not a drop in replacement for RGB32. as Iohannes suggested, it would be nice if Gem can choose the correct format to use, but RGBA32 is the only one that is 32 bit and 4 channels. so i guess there is noting to replace it when not available.
- gemwin use to send 1 / 0 when start / stop rendering. i sometime use this to load shader, like in example Gem/examples/10.glsl/09... In this example, i have to manually load the shader.
I just create a patch with :
[gemhead] | [route gem_state] | [print]
and there is no more 0/1 in pd console when you create or destroy gemwin.
yes that's was i wanted to say (gem_state 1 and not only 1)
On my side, i only use [loadbang] to load vertex/geometry/fragment shaders.
yes, this habit came from a time when shaders had to be load after windows creation. it is no longer needed. but this trick is also use at some other place. ( in _gemlist abstraction by example)
c
- gemmouse work, but not gemkeyname
[gemkeyboard] doesn't work too. ++
Jack
PS : i just notice that i am working with Gem from http://github.com/umlaeute/Gem. I will try with Gem from git://pd-gem.git.sourceforge.net/gitroot/pd-gem/Gem ...
thanks for all good work cheers c
Le 20/08/2014 10:07, IOhannes m zmoelnig a écrit : On 2014-08-19 18:11, Cyrille Henry wrote:
hello,
i just tested the current Gem git. (i'm still using on ubuntu linux 14.04, intel hd4000)
gemwin did not create. Gem/gemdefaultwindow can be created. it use gemglxwindow. (i have both gemglutwindow.pd_linux and gemglxwindow.pd_linux in /usr/local/lib/pd/extra/Gem)
sending the create message on this object did create an empty window. but sending "1" did not enable rendering, i only get : gemglxwindow: no method for 'float'
so : why did gemdefaultwindow is not named gemwin?
that's by design.
(sould i just make a symlink?)
no. [gemwin] and [gem*window] are *not* the same.
more important : how can i enable rendering?
the design is obviously different from what you expect.
[gemdefaultwindow] (or rather it's underlying implementations like [gemglxwindow] or [gemglutwindow]) is really just a very thin wrapper around an openGL-context. all it can do is to create/destroy an openGL-context (aka window), and make that context the "current" one (so any openGL commands are exectuted within this context).
it does a lot less than [gemwin], which handles viewpoints, rendering,...
short overview:
starting with Gem-0.94 (that is: current git), [gemwin] is now an abstraction (found in abstractions/). internally it uses [gemdefaultwindow] to create/destroy/switch-to windows/contexts, which is just another abstraction that wraps the actual implementation (e.g. [gemglfw3window]), but you really need the entire [gemwin] abstraction to use Gem as you used to.
apart from separating platform-independent code (as found in the [gemwin] abstraction) and platfrom-dependent code (the actual [gem*window] backend), this also allows the user to change the behaviour of [gemwin] without needing a compiler.
conclusion: add abstractions/ to your path, so you have a proper [gemwin].
fgmasdr IOhannes
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
Hello,
There is a problem when i force to render (for exemple) to square with two gemhead. It seems that "things" are inverted. Exemple attached. ++
Jack
if you print the gemhead output, you will see that the gemhead 49 is send before the gemhead, that is before the gemhead 51. gemhead order are correct.
the 3 square are rendered on the same Z. i guess, depending on the driver/gpu, the red square is rendered or not.
c
Le 20/08/2014 17:08, Jack a écrit :
Hello,
There is a problem when i force to render (for exemple) to square with two gemhead. It seems that "things" are inverted. Exemple attached. ++
Jack
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
Le 20/08/2014 17:41, Cyrille Henry a écrit :
if you print the gemhead output, you will see that the gemhead 49 is send before the gemhead, that is before the gemhead 51. gemhead order are correct.
Yes.
the 3 square are rendered on the same Z.
Yes.
i guess, depending on the driver/gpu, the red square is rendered or not.
Never seen that before on my computer ! I have this problem with my Intel card and with my NVidia card. it is a bit annoying... ++
Jack
c
Le 20/08/2014 17:08, Jack a écrit :
Hello,
There is a problem when i force to render (for exemple) to square with two gemhead. It seems that "things" are inverted. Exemple attached. ++
Jack
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
i still have few problem :
- when starting pd in the Gem/ folder, it start correctlly.
when starting pd in an other folder, pd segfault when loading gem_videoVLC plugin so, i just remove it : sudo rm /usr/local/lib/pd/extra/Gem/gem_videoVLC.*
I can reprooduce that, I opened an issue here : https://github.com/umlaeute/Gem/issues/39
- i did not try all example, but most work. i do however have some problem
with Gem/examples/10.glsl/05.multitexture_bis.pd if i open and close this patch, pd segfault (even without opening a rendering window). The patch did work.
this is due to a bug in [glsl_program], see https://github.com/umlaeute/Gem/issues/40
thanks for pointing this out
a
On 08/20/2014 11:07 AM, Cyrille Henry wrote:
Hello,
thanks for the answer, sorry i missed that. things work lot's better now!!!
i still have few problem :
- when starting pd in the Gem/ folder, it start correctlly.
when starting pd in an other folder, pd segfault when loading gem_videoVLC plugin so, i just remove it : sudo rm /usr/local/lib/pd/extra/Gem/gem_videoVLC.*
that should be fixed. it was a stupid error on my side (not a conflict with some other library).
- i did not try all example, but most work. i do however have some
problem with Gem/examples/10.glsl/05.multitexture_bis.pd if i open and close this patch, pd segfault (even without opening a rendering window). The patch did work.
afaict, this has been fixed as well.
- some other shader example did not render anything unless i configure
optimus to use the nvidia card. It's not a gem fault, just the intel HD and it's driver.
yep :-)
- gemwin use to send 1 / 0 when start / stop rendering. i sometime use
this to load shader, like in example Gem/examples/10.glsl/09... In this example, i have to manually load the shader.
i'll have a look. the problem is, that now there can be multiple windows, so if you close one window (but leave the other open), sending a "gem_state 0" doesn't make much sense. maybe gem_state should send the number of open contexts instead. (so when you create the 2nd window, you get a "gem_state 2" message, and when you destroy the first one (but leave the second one open, you get a "gem_state 1")
- gemmouse work, but not gemkeyname
yes, that's a bug.
gfmrdsa IOhannes
Le 21/08/2014 18:14, IOhannes m zmölnig a écrit :
On 08/20/2014 11:07 AM, Cyrille Henry wrote:
Hello,
thanks for the answer, sorry i missed that. things work lot's better now!!!
i still have few problem :
- when starting pd in the Gem/ folder, it start correctlly. when starting pd in an other folder, pd segfault when loading
gem_videoVLC plugin so, i just remove it : sudo rm /usr/local/lib/pd/extra/Gem/gem_videoVLC.*
that should be fixed. it was a stupid error on my side (not a conflict with some other library).
yes, fixed, thanks.
- i did not try all example, but most work. i do however have some
problem with Gem/examples/10.glsl/05.multitexture_bis.pd if i open and close this patch, pd segfault (even without opening a rendering window). The patch did work.
afaict, this has been fixed as well.
nope, it is still crashing here.
- some other shader example did not render anything unless i configure
optimus to use the nvidia card. It's not a gem fault, just the intel HD and it's driver.
yep :-)
it's sad that intel driver developer are not reactive like you!
- gemwin use to send 1 / 0 when start / stop rendering. i sometime use
this to load shader, like in example Gem/examples/10.glsl/09... In this example, i have to manually load the shader.
i'll have a look. the problem is, that now there can be multiple windows, so if you close one window (but leave the other open), sending a "gem_state 0" doesn't make much sense. maybe gem_state should send the number of open contexts instead. (so when you create the 2nd window, you get a "gem_state 2" message, and when you destroy the first one (but leave the second one open, you get a "gem_state 1")
well, it have to be send only by the gemhead that is rendering on the corresponding window. in fact gemhead still have to be replaced by an abstraction, so i guess that this abstraction should be in charge of filtering gem_stat that did not concern it's window. (?)
- gemmouse work, but not gemkeyname
yes, that's a bug.
should i fill a bug report, or bill it be fixed before? ;-)
cheers c
gfmrdsa IOhannes
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
Le 21/08/2014 19:13, Cyrille Henry a écrit :
Le 21/08/2014 18:14, IOhannes m zmölnig a écrit :
On 08/20/2014 11:07 AM, Cyrille Henry wrote:
Hello,
thanks for the answer, sorry i missed that. things work lot's better now!!!
i still have few problem :
- when starting pd in the Gem/ folder, it start correctlly. when starting pd in an other folder, pd segfault when loading
gem_videoVLC plugin so, i just remove it : sudo rm /usr/local/lib/pd/extra/Gem/gem_videoVLC.*
that should be fixed. it was a stupid error on my side (not a conflict with some other library).
yes, fixed, thanks.
I still get crash if i load gem_videoVLC.so. Maybe i miss something ? Here the gdb backtrace :
$ gdb --args pd -nrt -verbose -stderr GNU gdb (Ubuntu 7.7-0ubuntu3.1) 7.7 Copyright (C) 2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-linux-gnu". Type "show configuration" for configuration details. For bug reporting instructions, please see: http://www.gnu.org/software/gdb/bugs/. Find the GDB manual and other documentation resources online at: http://www.gnu.org/software/gdb/documentation/. For help, type "help". Type "apropos word" to search for commands related to "word"... Reading symbols from pd...(no debugging symbols found)...done. (gdb) run Starting program: /usr/local/bin/pd -nrt -verbose -stderr [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1". input channels = 2, output channels = 2 Pd-0.46.0 ("test1") compiled 13:01:01 Aug 16 2014 port 5401 TCL_LIBRARY="/usr/local/lib/pd/lib/tcl/library" TK_LIBRARY="/usr/local/lib/pd/lib/tk/library" wish "/usr/local/lib/pd/tcl//pd-gui.tcl" 5401 Waiting for connection request... ... connected opened 0 MIDI input device(s) and 0 MIDI output device(s). tried ./iem_tab.l_ia64 and failed tried /home/jack/Gem/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/iem_tab.l_ia64 and failed tried /home/jack/gridflow/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/iem_tab.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/iem_tab.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/boids/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/iem_tab.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/iem_tab.l_ia64 and failed tried /home/jack/pdgst/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/iem_tab.l_ia64 and failed tried /home/jack/gridflow/abstractions/iem_tab.l_ia64 and failed tried /home/jack/gridflow/deprecated/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/iem_tab.l_ia64 and failed tried /home/jack/Gem/abstractions/iem_tab.l_ia64 and failed tried /home/jack/pd-externals/iem_tab.l_ia64 and failed tried /usr/local/lib/pd-externals/iem_tab.l_ia64 and failed tried /usr/local/lib/pd/extra/iem_tab.l_ia64 and failed tried ./iem_tab.pd_linux and failed tried /home/jack/Gem/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/iem_tab.pd_linux and failed tried /home/jack/gridflow/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/iem_tab.pd_linux and failed tried /home/jack/Documents/PureData/PDabstractions/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/binfile/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/mapping/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/pmpd/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/iem/iem_tab/iem_tab.pd_linux and succeeded iem_tab (R-1.20) library loaded! (c) Thomas Musil 11.2011 musil@iem.at iem KUG Graz Austria tried ./Gem.l_ia64 and failed tried /home/jack/Gem/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/Gem.l_ia64 and failed tried /home/jack/gridflow/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/Gem.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/Gem.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/boids/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/Gem.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/Gem.l_ia64 and failed tried /home/jack/pdgst/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/Gem.l_ia64 and failed tried /home/jack/gridflow/abstractions/Gem.l_ia64 and failed tried /home/jack/gridflow/deprecated/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/Gem.l_ia64 and failed tried /home/jack/Gem/abstractions/Gem.l_ia64 and failed tried /home/jack/pd-externals/Gem.l_ia64 and failed tried /usr/local/lib/pd-externals/Gem.l_ia64 and failed tried /usr/local/lib/pd/extra/Gem.l_ia64 and failed tried ./Gem.pd_linux and succeeded GEM: Graphics Environment for Multimedia verbose(2): GEM: ver: 0.93.git f4b55e5 verbose(2): GEM: compiled: Aug 22 2014 verbose(2): GEM: maintained by IOhannes m zmoelnig verbose(2): GEM: Authors : Mark Danks (original version) verbose(2): GEM: Chris Clepper verbose(2): GEM: Cyrille Henry verbose(2): GEM: IOhannes m zmoelnig verbose(2): GEM: with help by Guenter Geiger, Daniel Heckenberg, James Tittle, Hans-Christoph Steiner, et al. verbose(2): GEM: found a bug? miss a feature? please report it: verbose(2): GEM: homepage http://gem.iem.at/ verbose(2): GEM: bug-tracker http://sourceforge.net/projects/pd-gem/ verbose(2): GEM: mailing-list http://lists.puredata.info/listinfo/gem-dev/ open: /etc/pd/gem.conf: No such file or directory open: /home/jack/.config/pure-data/gem.conf: No such file or directory open: ./gem.conf: No such file or directory tried ./Gem-meta.pd and succeeded verbose(2): GEM: compiled for MMX/SSE2 architecture verbose(2): GEM: using SSE2 optimization verbose(2): GEM: detected 8 CPUs load plugins 'film' in './' pattern : ./gem_film*.so dylib loading file './gem_filmGMERLIN.so'! dylib loading file './gem_filmMPEG3.so'! dylib loading file './gem_filmQT4L.so'! load plugins 'image' in './' pattern : ./gem_image*.so dylib loading file './gem_imageJPEG.so'! dylib loading file './gem_imageMAGICK.so'! dylib loading file './gem_imageSGI.so'! dylib loading file './gem_imageTIFF.so'! GEM: image loading support: magick SGI jpeg tiff not reloading 'image' plugins (already 4 loaded) load plugins 'image' in './' pattern : ./gem_image*.so dylib loading file './gem_imageJPEG.so'! dylib loading file './gem_imageMAGICK.so'! dylib loading file './gem_imageSGI.so'! dylib loading file './gem_imageTIFF.so'! GEM: image saving support: SGI jpeg magick tiff load plugins 'model' in './' pattern : ./gem_model*.so dylib loading file './gem_modelOBJ.so'! library loading returned: dlerror './gem_modelOBJ.so: undefined symbol: __GLEW_VERSION_1_1' load plugins 'record' in './' pattern : ./gem_record*.so dylib loading file './gem_recordQT4L.so'! dylib loading file './gem_recordV4L.so'! dylib loading file './gem_recordV4L2.so'! verbose(4): QT4L: default codec is: 'dv' load plugins 'video' in './' pattern : ./gem_video*.so dylib loading file './gem_videoDC1394.so'! dylib loading file './gem_videoV4L.so'! dylib loading file './gem_videoV4L2.so'! dylib loading file './gem_videoVLC.so'!
Program received signal SIGSEGV, Segmentation fault. __strcmp_ssse3 () at ../sysdeps/x86_64/multiarch/../strcmp.S:209 209 ../sysdeps/x86_64/multiarch/../strcmp.S: Aucun fichier ou dossier de ce type. (gdb) bt #0 __strcmp_ssse3 () at ../sysdeps/x86_64/multiarch/../strcmp.S:209 #1 0x00007fffe6eaffc9 in g_str_equal () from /lib/x86_64-linux-gnu/libglib-2.0.so.0 #2 0x00007fffe6eaf5f0 in g_hash_table_lookup () from /lib/x86_64-linux-gnu/libglib-2.0.so.0 #3 0x00007fffe6ecf3c0 in g_quark_from_static_string () from /lib/x86_64-linux-gnu/libglib-2.0.so.0 #4 0x00007fffe0df34ac in ?? () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0 #5 0x00007ffff7dea13a in call_init (l=<optimized out>, argc=argc@entry=4, argv=argv@entry=0x7fffffffdf98, env=env@entry=0x7fffffffdfc0) at dl-init.c:78 #6 0x00007ffff7dea223 in call_init (env=<optimized out>, argv=<optimized out>, argc=<optimized out>, l=<optimized out>) at dl-init.c:36 #7 _dl_init (main_map=main_map@entry=0xbe8130, argc=4, argv=0x7fffffffdf98, env=0x7fffffffdfc0) at dl-init.c:126 #8 0x00007ffff7deec70 in dl_open_worker (a=a@entry=0x7fffffffc198) at dl-open.c:577 #9 0x00007ffff7de9ff4 in _dl_catch_error (objname=objname@entry=0x7fffffffc188, errstring=errstring@entry=0x7fffffffc190, mallocedp=mallocedp@entry=0x7fffffffc180, operate=operate@entry=0x7ffff7dee9a0 <dl_open_worker>, args=args@entry=0x7fffffffc198) at dl-error.c:187 #10 0x00007ffff7dee3bb in _dl_open (file=0xbcadb0 "/usr/lib/vlc/plugins/gui/libqt4_plugin.so", mode=-2147483647, caller_dlopen=<optimized out>, nsid=-2, argc=4, argv=0x7fffffffdf98, env=0x7fffffffdfc0) at dl-open.c:661 #11 0x00007ffff719402b in dlopen_doit (a=a@entry=0x7fffffffc3b0) at dlopen.c:66 #12 0x00007ffff7de9ff4 in _dl_catch_error (objname=0x761610, errstring=0x761618, mallocedp=0x761608, operate=0x7ffff7193fd0 <dlopen_doit>, args=0x7fffffffc3b0) at dl-error.c:187 #13 0x00007ffff719462d in _dlerror_run (operate=operate@entry=0x7ffff7193fd0 <dlopen_doit>, args=args@entry=0x7fffffffc3b0) at dlerror.c:163 #14 0x00007ffff71940c1 in __dlopen (file=<optimized out>, mode=<optimized out>) at dlopen.c:87 #15 0x00007fffe45fde9f in ?? () from /usr/lib/libvlccore.so.7 #16 0x00007fffe45e762d in ?? () from /usr/lib/libvlccore.so.7 #17 0x00007fffe45e7927 in ?? () from /usr/lib/libvlccore.so.7 #18 0x00007fffe45e7b99 in ?? () from /usr/lib/libvlccore.so.7 #19 0x00007fffe45e7e04 in ?? () from /usr/lib/libvlccore.so.7 #20 0x00007fffe45e8357 in ?? () from /usr/lib/libvlccore.so.7 #21 0x00007fffe457fd1d in libvlc_InternalInit () from /usr/lib/libvlccore.so.7 #22 0x00007fffe4857b83 in libvlc_new () from /usr/lib/libvlc.so.5 #23 0x00007fffe4a711ed in gem::plugins::videoVLC::videoVLC (this=0x841400) at videoVLC.cpp:62 #24 0x00007fffe4a712db in gem::PluginFactoryRegistrar::allocatorgem::plugins::videoVLC, gem::plugins::video () at ../../src/plugins/PluginFactoryTimple.h:134 #25 0x00007ffff36b5fef in doGetInstance (id=..., this=<optimized out>) at ../../src/plugins/PluginFactoryTimple.h:70 #26 getInstance (id=...) at ../../src/plugins/PluginFactoryTimple.h:96 #27 addPlugin (ID=..., available=<error reading variable: access outside bounds of object referenced via synthetic pointer>, this=0x7ef980) at video.cpp:81 #28 gem::plugins::video::getInstance () at video.cpp:112 #29 0x00007ffff3679f55 in gem::plugins::init () at PluginFactory.cpp:175 #30 0x000000000048911c in sys_do_load_lib () #31 0x0000000000489498 in sys_load_lib () #32 0x00000000004817d3 in glob_initfromgui () #33 0x00000000004702b8 in pd_typedmess () #34 0x0000000000479c1c in binbuf_eval () #35 0x00000000004845ec in socketreceiver_read () #36 0x000000000048395d in sys_domicrosleep.constprop () #37 0x0000000000480290 in m_mainloop () #38 0x00007ffff6deeec5 in __libc_start_main (main=0x412560 <main>, argc=4, argv=0x7fffffffdf98, init=<optimized out>, fini=<optimized out>, rtld_fini=<optimized out>, stack_end=0x7fffffffdf88) at libc-start.c:287 #39 0x000000000041258e in _start ()
- i did not try all example, but most work. i do however have some
problem with Gem/examples/10.glsl/05.multitexture_bis.pd if i open and close this patch, pd segfault (even without opening a rendering window). The patch did work.
afaict, this has been fixed as well.
nope, it is still crashing here.
Same here. gdb backtrace :
... eprecated/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/iem_tab.l_ia64 and failed tried /home/jack/Gem/abstractions/iem_tab.l_ia64 and failed tried /home/jack/pd-externals/iem_tab.l_ia64 and failed tried /usr/local/lib/pd-externals/iem_tab.l_ia64 and failed tried /usr/local/lib/pd/extra/iem_tab.l_ia64 and failed tried ./iem_tab.pd_linux and failed tried /home/jack/Gem/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/iem_tab.pd_linux and failed tried /home/jack/gridflow/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/iem_tab.pd_linux and failed tried /home/jack/Documents/PureData/PDabstractions/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/binfile/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/mapping/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/pmpd/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/iem/iem_tab/iem_tab.pd_linux and succeeded iem_tab (R-1.20) library loaded! (c) Thomas Musil 11.2011 musil@iem.at iem KUG Graz Austria tried ./Gem.l_ia64 and failed tried /home/jack/Gem/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/Gem.l_ia64 and failed tried /home/jack/gridflow/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/Gem.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/Gem.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/boids/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/Gem.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/Gem.l_ia64 and failed tried /home/jack/pdgst/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/Gem.l_ia64 and failed tried /home/jack/gridflow/abstractions/Gem.l_ia64 and failed tried /home/jack/gridflow/deprecated/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/Gem.l_ia64 and failed tried /home/jack/Gem/abstractions/Gem.l_ia64 and failed tried /home/jack/pd-externals/Gem.l_ia64 and failed tried /usr/local/lib/pd-externals/Gem.l_ia64 and failed tried /usr/local/lib/pd/extra/Gem.l_ia64 and failed tried ./Gem.pd_linux and succeeded GEM: Graphics Environment for Multimedia verbose(2): GEM: ver: 0.93.git f4b55e5 verbose(2): GEM: compiled: Aug 22 2014 verbose(2): GEM: maintained by IOhannes m zmoelnig verbose(2): GEM: Authors : Mark Danks (original version) verbose(2): GEM: Chris Clepper verbose(2): GEM: Cyrille Henry verbose(2): GEM: IOhannes m zmoelnig verbose(2): GEM: with help by Guenter Geiger, Daniel Heckenberg, James Tittle, Hans-Christoph Steiner, et al. verbose(2): GEM: found a bug? miss a feature? please report it: verbose(2): GEM: homepage http://gem.iem.at/ verbose(2): GEM: bug-tracker http://sourceforge.net/projects/pd-gem/ verbose(2): GEM: mailing-list http://lists.puredata.info/listinfo/gem-dev/ open: /etc/pd/gem.conf: No such file or directory open: /home/jack/.config/pure-data/gem.conf: No such file or directory open: ./gem.conf: No such file or directory tried ./Gem-meta.pd and succeeded verbose(2): GEM: compiled for MMX/SSE2 architecture verbose(2): GEM: using SSE2 optimization verbose(2): GEM: detected 8 CPUs load plugins 'film' in './' pattern : ./gem_film*.so dylib loading file './gem_filmGMERLIN.so'! dylib loading file './gem_filmMPEG3.so'! dylib loading file './gem_filmQT4L.so'! load plugins 'image' in './' pattern : ./gem_image*.so dylib loading file './gem_imageJPEG.so'! dylib loading file './gem_imageMAGICK.so'! dylib loading file './gem_imageSGI.so'! dylib loading file './gem_imageTIFF.so'! GEM: image loading support: magick SGI jpeg tiff not reloading 'image' plugins (already 4 loaded) load plugins 'image' in './' pattern : ./gem_image*.so dylib loading file './gem_imageJPEG.so'! dylib loading file './gem_imageMAGICK.so'! dylib loading file './gem_imageSGI.so'! dylib loading file './gem_imageTIFF.so'! GEM: image saving support: SGI jpeg magick tiff load plugins 'model' in './' pattern : ./gem_model*.so dylib loading file './gem_modelOBJ.so'! library loading returned: dlerror './gem_modelOBJ.so: undefined symbol: __GLEW_VERSION_1_1' load plugins 'record' in './' pattern : ./gem_record*.so dylib loading file './gem_recordQT4L.so'! dylib loading file './gem_recordV4L.so'! dylib loading file './gem_recordV4L2.so'! verbose(4): QT4L: default codec is: 'dv' load plugins 'video' in './' pattern : ./gem_video*.so dylib loading file './gem_videoDC1394.so'! dylib loading file './gem_videoV4L.so'! dylib loading file './gem_videoV4L2.so'! tried ./pdstring.l_ia64 and failed tried /home/jack/Gem/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/pdstring.l_ia64 and failed tried /home/jack/gridflow/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/pdstring.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/pdstring.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/boids/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/pdstring.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/pdstring.l_ia64 and failed tried /home/jack/pdgst/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/pdstring.l_ia64 and failed tried /home/jack/gridflow/abstractions/pdstring.l_ia64 and failed tried /home/jack/gridflow/deprecated/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/pdstring.l_ia64 and failed tried /home/jack/Gem/abstractions/pdstring.l_ia64 and failed tried /home/jack/pd-externals/pdstring.l_ia64 and failed tried /usr/local/lib/pd-externals/pdstring.l_ia64 and failed tried /usr/local/lib/pd/extra/pdstring.l_ia64 and failed tried ./pdstring.pd_linux and failed tried /home/jack/Gem/pdstring.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/pdstring.pd_linux and succeeded
pdstring: byte-string externals version 0.10-2 by Bryan Jurish pdstring: compiled by jack on Thu Aug 21 15:14:08 CEST 2014 tried ./tcpserver.l_ia64 and failed tried /home/jack/Gem/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/tcpserver.l_ia64 and failed tried /home/jack/gridflow/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/tcpserver.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/tcpserver.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/boids/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/tcpserver.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/tcpserver.l_ia64 and failed tried /home/jack/pdgst/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/tcpserver.l_ia64 and failed tried /home/jack/gridflow/abstractions/tcpserver.l_ia64 and failed tried /home/jack/gridflow/deprecated/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/tcpserver.l_ia64 and failed tried /home/jack/Gem/abstractions/tcpserver.l_ia64 and failed tried /home/jack/pd-externals/tcpserver.l_ia64 and failed tried /usr/local/lib/pd-externals/tcpserver.l_ia64 and failed tried /usr/local/lib/pd/extra/tcpserver.l_ia64 and failed tried ./tcpserver.pd_linux and failed tried /home/jack/Gem/tcpserver.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/tcpserver.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/tcpserver.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/tcpserver.pd_linux and failed tried /home/jack/gridflow/tcpserver.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/tcpserver.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/tcpserver.pd_linux and succeeded iemnet - networking with Pd: [tcpserver] compiled on Aug 8 2014 at 17:36:18 copyright (c) 2010-2011 IOhannes m zmoelnig, IEM based on mrpeach/net, based on maxlib tried ./pdlua.l_ia64 and failed tried /home/jack/Gem/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/pdlua.l_ia64 and failed tried /home/jack/gridflow/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/pdlua.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/pdlua.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/boids/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/pdlua.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/pdlua.l_ia64 and failed tried /home/jack/pdgst/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/pdlua.l_ia64 and failed tried /home/jack/gridflow/abstractions/pdlua.l_ia64 and failed tried /home/jack/gridflow/deprecated/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/pdlua.l_ia64 and failed tried /home/jack/Gem/abstractions/pdlua.l_ia64 and failed tried /home/jack/pd-externals/pdlua.l_ia64 and failed tried /usr/local/lib/pd-externals/pdlua.l_ia64 and failed tried /usr/local/lib/pd/extra/pdlua.l_ia64 and failed tried ./pdlua.pd_linux and failed tried /home/jack/Gem/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/pdlua.pd_linux and failed tried /home/jack/gridflow/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/pdlua.pd_linux and failed tried /home/jack/Documents/PureData/PDabstractions/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/binfile/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/mapping/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/pmpd/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/iem/iem_tab/pdlua.pd_linux and failed tried /home/jack/pure-data/abstractions/footils/list-abs/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/boids/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/ggee/control/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/hcs/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/ggee/filters/pdlua.pd_linux and failed tried /home/jack/Gem/extra/pix_fiducialtrack/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/zexy/abs/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/share_mem/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/iem/comport/comport/pdlua.pd_linux and failed tried /home/jack/pdgst/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/august/readanysf~/pdlua.pd_linux and failed tried /home/jack/gridflow/abstractions/pdlua.pd_linux and failed tried /home/jack/gridflow/deprecated/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/moocow/readdir/src/pdlua.pd_linux and failed tried /home/jack/Gem/abstractions/pdlua.pd_linux and failed tried /home/jack/pd-externals/pdlua.pd_linux and failed tried /usr/local/lib/pd-externals/pdlua.pd_linux and failed tried /usr/local/lib/pd/extra/pdlua.pd_linux and failed tried ./pdlua/pdlua.l_ia64 and failed tried /home/jack/Gem/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/pdlua/pdlua.l_ia64 and failed tried /home/jack/gridflow/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/pdlua/pdlua.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/boids/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/pdlua/pdlua.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/pdlua/pdlua.l_ia64 and failed tried /home/jack/pdgst/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/pdlua/pdlua.l_ia64 and failed tried /home/jack/gridflow/abstractions/pdlua/pdlua.l_ia64 and failed tried /home/jack/gridflow/deprecated/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/pdlua/pdlua.l_ia64 and failed tried /home/jack/Gem/abstractions/pdlua/pdlua.l_ia64 and failed tried /home/jack/pd-externals/pdlua/pdlua.l_ia64 and failed tried /usr/local/lib/pd-externals/pdlua/pdlua.l_ia64 and failed tried /usr/local/lib/pd/extra/pdlua/pdlua.l_ia64 and failed tried ./pdlua/pdlua.pd_linux and failed tried /home/jack/Gem/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/pdlua/pdlua.pd_linux and failed tried /home/jack/gridflow/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/pdlua/pdlua.pd_linux and failed tried /home/jack/Documents/PureData/PDabstractions/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/binfile/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/mapping/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/pmpd/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/iem/iem_tab/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/abstractions/footils/list-abs/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/boids/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/ggee/control/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/hcs/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/ggee/filters/pdlua/pdlua.pd_linux and failed tried /home/jack/Gem/extra/pix_fiducialtrack/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/zexy/abs/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/share_mem/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/iem/comport/comport/pdlua/pdlua.pd_linux and failed tried /home/jack/pdgst/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/august/readanysf~/pdlua/pdlua.pd_linux and failed tried /home/jack/gridflow/abstractions/pdlua/pdlua.pd_linux and failed tried /home/jack/gridflow/deprecated/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/moocow/readdir/src/pdlua/pdlua.pd_linux and failed tried /home/jack/Gem/abstractions/pdlua/pdlua.pd_linux and failed tried /home/jack/pd-externals/pdlua/pdlua.pd_linux and failed tried /usr/local/lib/pd-externals/pdlua/pdlua.pd_linux and failed tried /usr/local/lib/pd/extra/pdlua/pdlua.pd_linux and failed pdlua: can't load library tried ./tcpclient.l_ia64 and failed tried /home/jack/Gem/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/tcpclient.l_ia64 and failed tried /home/jack/gridflow/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/tcpclient.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/tcpclient.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/boids/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/tcpclient.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/tcpclient.l_ia64 and failed tried /home/jack/pdgst/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/tcpclient.l_ia64 and failed tried /home/jack/gridflow/abstractions/tcpclient.l_ia64 and failed tried /home/jack/gridflow/deprecated/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/tcpclient.l_ia64 and failed tried /home/jack/Gem/abstractions/tcpclient.l_ia64 and failed tried /home/jack/pd-externals/tcpclient.l_ia64 and failed tried /usr/local/lib/pd-externals/tcpclient.l_ia64 and failed tried /usr/local/lib/pd/extra/tcpclient.l_ia64 and failed tried ./tcpclient.pd_linux and failed tried /home/jack/Gem/tcpclient.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/tcpclient.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/tcpclient.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/tcpclient.pd_linux and failed tried /home/jack/gridflow/tcpclient.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/tcpclient.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/tcpclient.pd_linux and succeeded iemnet - networking with Pd: [tcpclient] compiled on Aug 8 2014 at 17:36:18 copyright (c) 2010-2011 IOhannes m zmoelnig, IEM based on mrpeach/net, based on maxlib tried ./boids2d.l_ia64 and failed tried /home/jack/Gem/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/boids2d.l_ia64 and failed tried /home/jack/gridflow/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/boids2d.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/boids2d.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/boids/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/boids2d.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/boids2d.l_ia64 and failed tried /home/jack/pdgst/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/boids2d.l_ia64 and failed tried /home/jack/gridflow/abstractions/boids2d.l_ia64 and failed tried /home/jack/gridflow/deprecated/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/boids2d.l_ia64 and failed tried /home/jack/Gem/abstractions/boids2d.l_ia64 and failed tried /home/jack/pd-externals/boids2d.l_ia64 and failed tried /usr/local/lib/pd-externals/boids2d.l_ia64 and failed tried /usr/local/lib/pd/extra/boids2d.l_ia64 and failed tried ./boids2d.pd_linux and failed tried /home/jack/Gem/boids2d.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/boids2d.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/boids2d.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/boids2d.pd_linux and failed tried /home/jack/gridflow/boids2d.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/boids2d.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/boids2d.pd_linux and failed tried /home/jack/Documents/PureData/PDabstractions/boids2d.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/binfile/boids2d.pd_linux and failed tried /home/jack/pure-data/externals/mapping/boids2d.pd_linux and failed tried /home/jack/pure-data/externals/pmpd/boids2d.pd_linux and failed tried /home/jack/pure-data/externals/iem/iem_tab/boids2d.pd_linux and failed tried /home/jack/pure-data/abstractions/footils/list-abs/boids2d.pd_linux and failed tried /home/jack/pure-data/externals/boids/boids2d.pd_linux and succeeded verbose(4): boids2d 2005-2006 a.sier / jasch 1995-2003 eric l. singer Aug 8 2014 17:35:36 tried ./boids3d.l_ia64 and failed tried /home/jack/Gem/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/boids3d.l_ia64 and failed tried /home/jack/gridflow/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/boids3d.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/boids3d.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/boids/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/boids3d.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/boids3d.l_ia64 and failed tried /home/jack/pdgst/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/boids3d.l_ia64 and failed tried /home/jack/gridflow/abstractions/boids3d.l_ia64 and failed tried /home/jack/gridflow/deprecated/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/boids3d.l_ia64 and failed tried /home/jack/Gem/abstractions/boids3d.l_ia64 and failed tried /home/jack/pd-externals/boids3d.l_ia64 and failed tried /usr/local/lib/pd-externals/boids3d.l_ia64 and failed tried /usr/local/lib/pd/extra/boids3d.l_ia64 and failed tried ./boids3d.pd_linux and failed tried /home/jack/Gem/boids3d.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/boids3d.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/boids3d.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/boids3d.pd_linux and failed tried /home/jack/gridflow/boids3d.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/boids3d.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/boids3d.pd_linux and failed tried /home/jack/Documents/PureData/PDabstractions/boids3d.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/binfile/boids3d.pd_linux and failed tried /home/jack/pure-data/externals/mapping/boids3d.pd_linux and failed tried /home/jack/pure-data/externals/pmpd/boids3d.pd_linux and failed tried /home/jack/pure-data/externals/iem/iem_tab/boids3d.pd_linux and failed tried /home/jack/pure-data/abstractions/footils/list-abs/boids3d.pd_linux and failed tried /home/jack/pure-data/externals/boids/boids3d.pd_linux and succeeded verbose(4): boids3d 2005-2006 a.sier / jasch � 1995-2003 eric l. singer Aug 8 2014 17:35:36 tried ./pdgst.l_ia64 and failed tried /home/jack/Gem/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/pdgst.l_ia64 and failed tried /home/jack/gridflow/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/pdgst.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/pdgst.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/boids/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/pdgst.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/pdgst.l_ia64 and failed tried /home/jack/pdgst/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/pdgst.l_ia64 and failed tried /home/jack/gridflow/abstractions/pdgst.l_ia64 and failed tried /home/jack/gridflow/deprecated/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/pdgst.l_ia64 and failed tried /home/jack/Gem/abstractions/pdgst.l_ia64 and failed tried /home/jack/pd-externals/pdgst.l_ia64 and failed tried /usr/local/lib/pd-externals/pdgst.l_ia64 and failed tried /usr/local/lib/pd/extra/pdgst.l_ia64 and failed tried ./pdgst.pd_linux and failed tried /home/jack/Gem/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/pdgst.pd_linux and failed tried /home/jack/gridflow/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/pdgst.pd_linux and failed tried /home/jack/Documents/PureData/PDabstractions/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/binfile/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/mapping/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/pmpd/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/iem/iem_tab/pdgst.pd_linux and failed tried /home/jack/pure-data/abstractions/footils/list-abs/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/boids/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/ggee/control/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/hcs/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/ggee/filters/pdgst.pd_linux and failed tried /home/jack/Gem/extra/pix_fiducialtrack/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/zexy/abs/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/share_mem/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/iem/comport/comport/pdgst.pd_linux and failed tried /home/jack/pdgst/pdgst.pd_linux and succeeded pdgst ver0.1 (copyleft) IOhannes m zmoelnig @ IEM / KUG compiled on Aug 22 2013 at 14:05:11 compiled against Pd version 0.45.0.test 2 tried ./zexy.l_ia64 and failed tried /home/jack/Gem/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/zexy.l_ia64 and failed tried /home/jack/gridflow/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/zexy.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/zexy.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/boids/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/zexy.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/zexy.l_ia64 and failed tried /home/jack/pdgst/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/zexy.l_ia64 and failed tried /home/jack/gridflow/abstractions/zexy.l_ia64 and failed tried /home/jack/gridflow/deprecated/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/zexy.l_ia64 and failed tried /home/jack/Gem/abstractions/zexy.l_ia64 and failed tried /home/jack/pd-externals/zexy.l_ia64 and failed tried /usr/local/lib/pd-externals/zexy.l_ia64 and failed tried /usr/local/lib/pd/extra/zexy.l_ia64 and failed tried ./zexy.pd_linux and failed tried /home/jack/Gem/zexy.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/zexy.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/zexy.pd_linux and succeeded
♡♡♡ ♡ the zexy external 2.2.6svn ♡ (c) 1999-2012 IOhannes m zmölnig ♡ forum::für::umläute ♡ iem @ kug ♡ compiled: Aug 21 2014 ♡ send me a 'help' message ♡♡♡
warning: class 'abs~' overwritten; old one renamed 'abs~_aliased' matchbox: OSC-pattern matching code (c) Matt Wright, CNMAT warning: class 'wrap' overwritten; old one renamed 'wrap_aliased' tried /home/jack/Gem/examples/10.glsl/09.vertex_texture_fetching.pd and succeeded not reloading 'image' plugins (already 4 loaded) [New Thread 0x7fffe1f1e700 (LWP 32135)] tried /home/jack/Gem/examples/10.glsl/img1.jpg and succeeded verbose(4): [pix_image]: loading image '/home/jack/Gem/examples/10.glsl/img1.jpg' with ID:1 tried /home/jack/Gem/examples/10.glsl/gemwin.l_ia64 and failed tried /home/jack/Gem/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/gemwin.l_ia64 and failed tried /home/jack/gridflow/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/gemwin.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/gemwin.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/boids/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/gemwin.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/gemwin.l_ia64 and failed tried /home/jack/pdgst/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/gemwin.l_ia64 and failed tried /home/jack/gridflow/abstractions/gemwin.l_ia64 and failed tried /home/jack/gridflow/deprecated/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/gemwin.l_ia64 and failed tried /home/jack/Gem/abstractions/gemwin.l_ia64 and failed tried /home/jack/pd-externals/gemwin.l_ia64 and failed tried /usr/local/lib/pd-externals/gemwin.l_ia64 and failed tried /usr/local/lib/pd/extra/gemwin.l_ia64 and failed tried /home/jack/Gem/examples/10.glsl/gemwin.pd_linux and failed tried /home/jack/Gem/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/gemwin.pd_linux and failed tried /home/jack/gridflow/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/gemwin.pd_linux and failed tried /home/jack/Documents/PureData/PDabstractions/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/binfile/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/mapping/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/pmpd/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/iem/iem_tab/gemwin.pd_linux and failed tried /home/jack/pure-data/abstractions/footils/list-abs/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/boids/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/ggee/control/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/hcs/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/ggee/filters/gemwin.pd_linux and failed tried /home/jack/Gem/extra/pix_fiducialtrack/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/zexy/abs/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/share_mem/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/iem/comport/comport/gemwin.pd_linux and failed tried /home/jack/pdgst/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/august/readanysf~/gemwin.pd_linux and failed tried /home/jack/gridflow/abstractions/gemwin.pd_linux and failed tried /home/jack/gridflow/deprecated/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/moocow/readdir/src/gemwin.pd_linux and failed tried /home/jack/Gem/abstractions/gemwin.pd_linux and failed tried /home/jack/pd-externals/gemwin.pd_linux and failed tried /usr/local/lib/pd-externals/gemwin.pd_linux and failed tried /usr/local/lib/pd/extra/gemwin.pd_linux and failed tried /home/jack/Gem/examples/10.glsl/gemwin/gemwin.l_ia64 and failed tried /home/jack/Gem/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/gemwin/gemwin.l_ia64 and failed tried /home/jack/gridflow/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/gemwin/gemwin.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/boids/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/gemwin/gemwin.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/gemwin/gemwin.l_ia64 and failed tried /home/jack/pdgst/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/gemwin/gemwin.l_ia64 and failed tried /home/jack/gridflow/abstractions/gemwin/gemwin.l_ia64 and failed tried /home/jack/gridflow/deprecated/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/gemwin/gemwin.l_ia64 and failed tried /home/jack/Gem/abstractions/gemwin/gemwin.l_ia64 and failed tried /home/jack/pd-externals/gemwin/gemwin.l_ia64 and failed tried /usr/local/lib/pd-externals/gemwin/gemwin.l_ia64 and failed tried /usr/local/lib/pd/extra/gemwin/gemwin.l_ia64 and failed tried /home/jack/Gem/examples/10.glsl/gemwin/gemwin.pd_linux and failed tried /home/jack/Gem/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/gemwin/gemwin.pd_linux and failed tried /home/jack/gridflow/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/gemwin/gemwin.pd_linux and failed tried /home/jack/Documents/PureData/PDabstractions/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/binfile/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/mapping/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/pmpd/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/iem/iem_tab/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/abstractions/footils/list-abs/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/boids/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/ggee/control/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/hcs/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/ggee/filters/gemwin/gemwin.pd_linux and failed tried /home/jack/Gem/extra/pix_fiducialtrack/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/zexy/abs/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/share_mem/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/iem/comport/comport/gemwin/gemwin.pd_linux and failed tried /home/jack/pdgst/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/august/readanysf~/gemwin/gemwin.pd_linux and failed tried /home/jack/gridflow/abstractions/gemwin/gemwin.pd_linux and failed tried /home/jack/gridflow/deprecated/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/moocow/readdir/src/gemwin/gemwin.pd_linux and failed tried /home/jack/Gem/abstractions/gemwin/gemwin.pd_linux and failed tried /home/jack/pd-externals/gemwin/gemwin.pd_linux and failed tried /usr/local/lib/pd-externals/gemwin/gemwin.pd_linux and failed tried /usr/local/lib/pd/extra/gemwin/gemwin.pd_linux and failed tried /home/jack/Gem/examples/10.glsl/gemwin.pd and failed tried /home/jack/Gem/gemwin.pd and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/gemwin.pd and failed tried /home/jack/pure-data/externals/zexy/src/.libs/gemwin.pd and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/gemwin.pd and failed tried /home/jack/gridflow/gemwin.pd and failed tried /home/jack/pure-data/externals/mrpeach/osc/gemwin.pd and failed tried /home/jack/pure-data/externals/iem/iemnet/gemwin.pd and failed tried /home/jack/Documents/PureData/PDabstractions/gemwin.pd and failed tried /home/jack/pure-data/externals/mrpeach/binfile/gemwin.pd and failed tried /home/jack/pure-data/externals/mapping/gemwin.pd and failed tried /home/jack/pure-data/externals/pmpd/gemwin.pd and failed tried /home/jack/pure-data/externals/iem/iem_tab/gemwin.pd and failed tried /home/jack/pure-data/abstractions/footils/list-abs/gemwin.pd and failed tried /home/jack/pure-data/externals/boids/gemwin.pd and failed tried /home/jack/pure-data/externals/ggee/control/gemwin.pd and failed tried /home/jack/pure-data/externals/hcs/gemwin.pd and failed tried /home/jack/pure-data/externals/ggee/filters/gemwin.pd and failed tried /home/jack/Gem/extra/pix_fiducialtrack/gemwin.pd and failed tried /home/jack/pure-data/externals/zexy/abs/gemwin.pd and failed tried /home/jack/pure-data/externals/share_mem/gemwin.pd and failed tried /home/jack/pure-data/externals/moocow/pdstring/gemwin.pd and failed tried /home/jack/pure-data/externals/iem/comport/comport/gemwin.pd and failed tried /home/jack/pdgst/gemwin.pd and failed tried /home/jack/pure-data/externals/august/readanysf~/gemwin.pd and failed tried /home/jack/gridflow/abstractions/gemwin.pd and failed tried /home/jack/gridflow/deprecated/gemwin.pd and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/gemwin.pd and failed tried /home/jack/pure-data/externals/moocow/readdir/src/gemwin.pd and failed tried /home/jack/Gem/abstractions/gemwin.pd and succeeded tried /home/jack/Gem/abstractions/gemdefaultwindow.l_ia64 and failed tried /home/jack/Gem/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/gemdefaultwindow.l_ia64 and failed tried /home/jack/gridflow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/gemdefaultwindow.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/boids/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/gemdefaultwindow.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/gemdefaultwindow.l_ia64 and failed tried /home/jack/pdgst/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/gemdefaultwindow.l_ia64 and failed tried /home/jack/gridflow/abstractions/gemdefaultwindow.l_ia64 and failed tried /home/jack/gridflow/deprecated/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/gemdefaultwindow.l_ia64 and failed tried /home/jack/Gem/abstractions/gemdefaultwindow.l_ia64 and failed tried /home/jack/pd-externals/gemdefaultwindow.l_ia64 and failed tried /usr/local/lib/pd-externals/gemdefaultwindow.l_ia64 and failed tried /usr/local/lib/pd/extra/gemdefaultwindow.l_ia64 and failed tried /home/jack/Gem/abstractions/gemdefaultwindow.pd_linux and failed tried /home/jack/Gem/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/gemdefaultwindow.pd_linux and failed tried /home/jack/gridflow/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/gemdefaultwindow.pd_linux and failed tried /home/jack/Documents/PureData/PDabstractions/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/binfile/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/mapping/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/pmpd/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/iem/iem_tab/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/abstractions/footils/list-abs/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/boids/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/ggee/control/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/hcs/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/ggee/filters/gemdefaultwindow.pd_linux and failed tried /home/jack/Gem/extra/pix_fiducialtrack/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/zexy/abs/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/share_mem/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/iem/comport/comport/gemdefaultwindow.pd_linux and failed tried /home/jack/pdgst/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/august/readanysf~/gemdefaultwindow.pd_linux and failed tried /home/jack/gridflow/abstractions/gemdefaultwindow.pd_linux and failed tried /home/jack/gridflow/deprecated/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/moocow/readdir/src/gemdefaultwindow.pd_linux and failed tried /home/jack/Gem/abstractions/gemdefaultwindow.pd_linux and failed tried /home/jack/pd-externals/gemdefaultwindow.pd_linux and failed tried /usr/local/lib/pd-externals/gemdefaultwindow.pd_linux and failed tried /usr/local/lib/pd/extra/gemdefaultwindow.pd_linux and failed tried /home/jack/Gem/abstractions/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/Gem/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/gridflow/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/boids/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pdgst/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/gridflow/abstractions/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/gridflow/deprecated/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/Gem/abstractions/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pd-externals/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /usr/local/lib/pd-externals/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /usr/local/lib/pd/extra/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/Gem/abstractions/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/Gem/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/gridflow/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/Documents/PureData/PDabstractions/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/binfile/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/mapping/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/pmpd/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/iem/iem_tab/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/abstractions/footils/list-abs/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/boids/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/ggee/control/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/hcs/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/ggee/filters/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/Gem/extra/pix_fiducialtrack/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/zexy/abs/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/share_mem/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/iem/comport/comport/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pdgst/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/august/readanysf~/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/gridflow/abstractions/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/gridflow/deprecated/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/moocow/readdir/src/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/Gem/abstractions/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pd-externals/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /usr/local/lib/pd-externals/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /usr/local/lib/pd/extra/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/Gem/abstractions/gemdefaultwindow.pd and succeeded tried /home/jack/Gem/abstractions/gemglxwindow.l_ia64 and failed tried /home/jack/Gem/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/gemglxwindow.l_ia64 and failed tried /home/jack/gridflow/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/gemglxwindow.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/boids/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/gemglxwindow.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/gemglxwindow.l_ia64 and failed tried /home/jack/pdgst/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/gemglxwindow.l_ia64 and failed tried /home/jack/gridflow/abstractions/gemglxwindow.l_ia64 and failed tried /home/jack/gridflow/deprecated/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/gemglxwindow.l_ia64 and failed tried /home/jack/Gem/abstractions/gemglxwindow.l_ia64 and failed tried /home/jack/pd-externals/gemglxwindow.l_ia64 and failed tried /usr/local/lib/pd-externals/gemglxwindow.l_ia64 and failed tried /usr/local/lib/pd/extra/gemglxwindow.l_ia64 and failed tried /home/jack/Gem/abstractions/gemglxwindow.pd_linux and failed tried /home/jack/Gem/gemglxwindow.pd_linux and succeeded tried /home/jack/Gem/abstractions/expr.l_ia64 and failed tried /home/jack/Gem/expr.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/expr.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/expr.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/expr.l_ia64 and failed tried /home/jack/gridflow/expr.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/expr.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/expr.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/expr.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/expr.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/expr.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/expr.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/expr.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/expr.l_ia64 and failed tried /home/jack/pure-data/externals/boids/expr.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/expr.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/expr.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/expr.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/expr.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/expr.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/expr.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/expr.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/expr.l_ia64 and failed tried /home/jack/pdgst/expr.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/expr.l_ia64 and failed tried /home/jack/gridflow/abstractions/expr.l_ia64 and failed tried /home/jack/gridflow/deprecated/expr.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/expr.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/expr.l_ia64 and failed tried /home/jack/Gem/abstractions/expr.l_ia64 and failed tried /home/jack/pd-externals/expr.l_ia64 and failed tried /usr/local/lib/pd-externals/expr.l_ia64 and failed tried /usr/local/lib/pd/extra/expr.l_ia64 and failed tried /home/jack/Gem/abstractions/expr.pd_linux and failed tried /home/jack/Gem/expr.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/expr.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/expr.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/expr.pd_linux and failed tried /home/jack/gridflow/expr.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/expr.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/expr.pd_linux and failed tried /home/jack/Documents/PureData/PDabstractions/expr.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/binfile/expr.pd_linux and failed tried /home/jack/pure-data/externals/mapping/expr.pd_linux and failed tried /home/jack/pure-data/externals/pmpd/expr.pd_linux and failed tried /home/jack/pure-data/externals/iem/iem_tab/expr.pd_linux and failed tried /home/jack/pure-data/abstractions/footils/list-abs/expr.pd_linux and failed tried /home/jack/pure-data/externals/boids/expr.pd_linux and failed tried /home/jack/pure-data/externals/ggee/control/expr.pd_linux and failed tried /home/jack/pure-data/externals/hcs/expr.pd_linux and failed tried /home/jack/pure-data/externals/ggee/filters/expr.pd_linux and failed tried /home/jack/Gem/extra/pix_fiducialtrack/expr.pd_linux and failed tried /home/jack/pure-data/externals/zexy/abs/expr.pd_linux and failed tried /home/jack/pure-data/externals/share_mem/expr.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/expr.pd_linux and failed tried /home/jack/pure-data/externals/iem/comport/comport/expr.pd_linux and failed tried /home/jack/pdgst/expr.pd_linux and failed tried /home/jack/pure-data/externals/august/readanysf~/expr.pd_linux and failed tried /home/jack/gridflow/abstractions/expr.pd_linux and failed tried /home/jack/gridflow/deprecated/expr.pd_linux and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/expr.pd_linux and failed tried /home/jack/pure-data/externals/moocow/readdir/src/expr.pd_linux and failed tried /home/jack/Gem/abstractions/expr.pd_linux and failed tried /home/jack/pd-externals/expr.pd_linux and failed tried /usr/local/lib/pd-externals/expr.pd_linux and failed tried /usr/local/lib/pd/extra/expr.pd_linux and succeeded expr, expr~, fexpr~ version 0.4 under GNU Lesser General Public License error: gemglxwindow: no method for 'topmost' verbose(4): ... you might be able to track this down from the Find menu. error: gemglxwindow: no method for 'menubar' error: gemglxwindow: no method for 'secondscreen' [pix_texture]: using mode 0: TEXTURE_2D
Program received signal SIGSEGV, Segmentation fault. 0x00007ffff36c7d39 in gemframebuffer::destroyFBO (this=0xbc44b0) at gemframebuffer.cpp:348 348 if(!GLEW_EXT_framebuffer_object) (gdb) bt #0 0x00007ffff36c7d39 in gemframebuffer::destroyFBO (this=0xbc44b0) at gemframebuffer.cpp:348 #1 0x00007ffff36c7dfc in gemframebuffer::~gemframebuffer (this=0xbc44b0, __in_chrg=<optimized out>) at gemframebuffer.cpp:75 #2 0x00007ffff36c7e39 in gemframebuffer::~gemframebuffer (this=0xbc44b0, __in_chrg=<optimized out>) at gemframebuffer.cpp:77 #3 0x000000000046e409 in pd_free () #4 0x00000000004180ad in glist_delete () #5 0x0000000000413d88 in canvas_free () #6 0x000000000046e409 in pd_free () #7 0x00000000004703cd in pd_typedmess () #8 0x000000000047018c in pd_typedmess () #9 0x0000000000479c1c in binbuf_eval () #10 0x00000000004845ec in socketreceiver_read () #11 0x000000000048395d in sys_domicrosleep.constprop () #12 0x0000000000480290 in m_mainloop () #13 0x00007ffff6deeec5 in __libc_start_main (main=0x412560 <main>, argc=5, argv=0x7fffffffdf58, init=<optimized out>, fini=<optimized out>, rtld_fini=<optimized out>, stack_end=0x7fffffffdf48) at libc-start.c:287 #14 0x000000000041258e in _start ()
++
Jack
- some other shader example did not render anything unless i configure
optimus to use the nvidia card. It's not a gem fault, just the intel HD and it's driver.
yep :-)
it's sad that intel driver developer are not reactive like you!
- gemwin use to send 1 / 0 when start / stop rendering. i sometime use
this to load shader, like in example Gem/examples/10.glsl/09... In this example, i have to manually load the shader.
i'll have a look. the problem is, that now there can be multiple windows, so if you close one window (but leave the other open), sending a "gem_state 0" doesn't make much sense. maybe gem_state should send the number of open contexts instead. (so when you create the 2nd window, you get a "gem_state 2" message, and when you destroy the first one (but leave the second one open, you get a "gem_state 1")
well, it have to be send only by the gemhead that is rendering on the corresponding window. in fact gemhead still have to be replaced by an abstraction, so i guess that this abstraction should be in charge of filtering gem_stat that did not concern it's window. (?)
- gemmouse work, but not gemkeyname
yes, that's a bug.
should i fill a bug report, or bill it be fixed before? ;-)
cheers c
gfmrdsa IOhannes
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
On my side, with Ubuntu 14.04 64bit, gem_videoVLC.so is loaded correctly at startup. And I think it's fixed for Cyrille too. So the bug reported in [5] is closed. Also your backtrace differ from what I report on this issue, so I guess you may have found another bug... Please open a new ticket.
Concerning Gem/examples/10.glsl/05.multitexture_bis.pd could you explain how to reproduce the crash (maybe in a new bug report) ? Because the crash due to [glsl_program] have been fixed with [6]. But on my computer, Pd is crashing when I reopen the rendering window. But this a bug in Intel driver, not Gem.
BTW, please consider the use of online pasting tool like [1] or [2] instead of posting very long log directly in mailing list moreover, I think it's better to report bug in the bug trackers (either Sourceforge [3] or GIthub [4] ) On my side, I prefer Github because I experienced issue with Sourceforge markdown system. and don't forget (not like me :-) ) to check if there isn't already a bug report about the problem you're facing.
cheers
a
[1] : http://pastebin.com/ [2] : https://gist.github.com/ [3] : https://sourceforge.net/p/pd-gem/bugs/?source=navbar [4] : https://github.com/umlaeute/Gem/issues [5] : https://github.com/umlaeute/Gem/issues/39 [6] : https://github.com/umlaeute/Gem/commit/eec70c35411b401307c3c73001f74919c08be...
-- do it yourself http://antoine.villeret.free.fr
2014-08-22 12:53 GMT+02:00 Jack jack@rybn.org:
Le 21/08/2014 19:13, Cyrille Henry a écrit :
Le 21/08/2014 18:14, IOhannes m zmölnig a écrit :
On 08/20/2014 11:07 AM, Cyrille Henry wrote:
Hello,
thanks for the answer, sorry i missed that. things work lot's better now!!!
i still have few problem :
- when starting pd in the Gem/ folder, it start correctlly. when starting pd in an other folder, pd segfault when loading
gem_videoVLC plugin so, i just remove it : sudo rm /usr/local/lib/pd/extra/Gem/gem_videoVLC.*
that should be fixed. it was a stupid error on my side (not a conflict with some other library).
yes, fixed, thanks.
I still get crash if i load gem_videoVLC.so. Maybe i miss something ? Here the gdb backtrace :
$ gdb --args pd -nrt -verbose -stderr GNU gdb (Ubuntu 7.7-0ubuntu3.1) 7.7 Copyright (C) 2014 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later http://gnu.org/licenses/gpl.html This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Type "show copying" and "show warranty" for details. This GDB was configured as "x86_64-linux-gnu". Type "show configuration" for configuration details. For bug reporting instructions, please see: http://www.gnu.org/software/gdb/bugs/. Find the GDB manual and other documentation resources online at: http://www.gnu.org/software/gdb/documentation/. For help, type "help". Type "apropos word" to search for commands related to "word"... Reading symbols from pd...(no debugging symbols found)...done. (gdb) run Starting program: /usr/local/bin/pd -nrt -verbose -stderr [Thread debugging using libthread_db enabled] Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1". input channels = 2, output channels = 2 Pd-0.46.0 ("test1") compiled 13:01:01 Aug 16 2014 port 5401 TCL_LIBRARY="/usr/local/lib/pd/lib/tcl/library" TK_LIBRARY="/usr/local/lib/pd/lib/tk/library" wish "/usr/local/lib/pd/tcl//pd-gui.tcl" 5401 Waiting for connection request... ... connected opened 0 MIDI input device(s) and 0 MIDI output device(s). tried ./iem_tab.l_ia64 and failed tried /home/jack/Gem/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/iem_tab.l_ia64 and failed tried /home/jack/gridflow/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/iem_tab.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/iem_tab.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/boids/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/iem_tab.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/iem_tab.l_ia64 and failed tried /home/jack/pdgst/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/iem_tab.l_ia64 and failed tried /home/jack/gridflow/abstractions/iem_tab.l_ia64 and failed tried /home/jack/gridflow/deprecated/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/iem_tab.l_ia64 and failed tried /home/jack/Gem/abstractions/iem_tab.l_ia64 and failed tried /home/jack/pd-externals/iem_tab.l_ia64 and failed tried /usr/local/lib/pd-externals/iem_tab.l_ia64 and failed tried /usr/local/lib/pd/extra/iem_tab.l_ia64 and failed tried ./iem_tab.pd_linux and failed tried /home/jack/Gem/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/iem_tab.pd_linux and failed tried /home/jack/gridflow/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/iem_tab.pd_linux and failed tried /home/jack/Documents/PureData/PDabstractions/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/binfile/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/mapping/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/pmpd/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/iem/iem_tab/iem_tab.pd_linux and succeeded iem_tab (R-1.20) library loaded! (c) Thomas Musil 11.2011 musil@iem.at iem KUG Graz Austria tried ./Gem.l_ia64 and failed tried /home/jack/Gem/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/Gem.l_ia64 and failed tried /home/jack/gridflow/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/Gem.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/Gem.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/boids/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/Gem.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/Gem.l_ia64 and failed tried /home/jack/pdgst/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/Gem.l_ia64 and failed tried /home/jack/gridflow/abstractions/Gem.l_ia64 and failed tried /home/jack/gridflow/deprecated/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/Gem.l_ia64 and failed tried /home/jack/Gem/abstractions/Gem.l_ia64 and failed tried /home/jack/pd-externals/Gem.l_ia64 and failed tried /usr/local/lib/pd-externals/Gem.l_ia64 and failed tried /usr/local/lib/pd/extra/Gem.l_ia64 and failed tried ./Gem.pd_linux and succeeded GEM: Graphics Environment for Multimedia verbose(2): GEM: ver: 0.93.git f4b55e5 verbose(2): GEM: compiled: Aug 22 2014 verbose(2): GEM: maintained by IOhannes m zmoelnig verbose(2): GEM: Authors : Mark Danks (original version) verbose(2): GEM: Chris Clepper verbose(2): GEM: Cyrille Henry verbose(2): GEM: IOhannes m zmoelnig verbose(2): GEM: with help by Guenter Geiger, Daniel Heckenberg, James Tittle, Hans-Christoph Steiner, et al. verbose(2): GEM: found a bug? miss a feature? please report it: verbose(2): GEM: homepage http://gem.iem.at/ verbose(2): GEM: bug-tracker http://sourceforge.net/projects/pd-gem/ verbose(2): GEM: mailing-list http://lists.puredata.info/listinfo/gem-dev/ open: /etc/pd/gem.conf: No such file or directory open: /home/jack/.config/pure-data/gem.conf: No such file or directory open: ./gem.conf: No such file or directory tried ./Gem-meta.pd and succeeded verbose(2): GEM: compiled for MMX/SSE2 architecture verbose(2): GEM: using SSE2 optimization verbose(2): GEM: detected 8 CPUs load plugins 'film' in './' pattern : ./gem_film*.so dylib loading file './gem_filmGMERLIN.so'! dylib loading file './gem_filmMPEG3.so'! dylib loading file './gem_filmQT4L.so'! load plugins 'image' in './' pattern : ./gem_image*.so dylib loading file './gem_imageJPEG.so'! dylib loading file './gem_imageMAGICK.so'! dylib loading file './gem_imageSGI.so'! dylib loading file './gem_imageTIFF.so'! GEM: image loading support: magick SGI jpeg tiff not reloading 'image' plugins (already 4 loaded) load plugins 'image' in './' pattern : ./gem_image*.so dylib loading file './gem_imageJPEG.so'! dylib loading file './gem_imageMAGICK.so'! dylib loading file './gem_imageSGI.so'! dylib loading file './gem_imageTIFF.so'! GEM: image saving support: SGI jpeg magick tiff load plugins 'model' in './' pattern : ./gem_model*.so dylib loading file './gem_modelOBJ.so'! library loading returned: dlerror './gem_modelOBJ.so: undefined symbol: __GLEW_VERSION_1_1' load plugins 'record' in './' pattern : ./gem_record*.so dylib loading file './gem_recordQT4L.so'! dylib loading file './gem_recordV4L.so'! dylib loading file './gem_recordV4L2.so'! verbose(4): QT4L: default codec is: 'dv' load plugins 'video' in './' pattern : ./gem_video*.so dylib loading file './gem_videoDC1394.so'! dylib loading file './gem_videoV4L.so'! dylib loading file './gem_videoV4L2.so'! dylib loading file './gem_videoVLC.so'!
Program received signal SIGSEGV, Segmentation fault. __strcmp_ssse3 () at ../sysdeps/x86_64/multiarch/../strcmp.S:209 209 ../sysdeps/x86_64/multiarch/../strcmp.S: Aucun fichier ou dossier de ce type. (gdb) bt #0 __strcmp_ssse3 () at ../sysdeps/x86_64/multiarch/../strcmp.S:209 #1 0x00007fffe6eaffc9 in g_str_equal () from /lib/x86_64-linux-gnu/libglib-2.0.so.0 #2 0x00007fffe6eaf5f0 in g_hash_table_lookup () from /lib/x86_64-linux-gnu/libglib-2.0.so.0 #3 0x00007fffe6ecf3c0 in g_quark_from_static_string () from /lib/x86_64-linux-gnu/libglib-2.0.so.0 #4 0x00007fffe0df34ac in ?? () from /usr/lib/x86_64-linux-gnu/libgobject-2.0.so.0 #5 0x00007ffff7dea13a in call_init (l=<optimized out>, argc=argc@entry=4, argv=argv@entry=0x7fffffffdf98, env=env@entry=0x7fffffffdfc0) at dl-init.c:78 #6 0x00007ffff7dea223 in call_init (env=<optimized out>, argv=<optimized out>, argc=<optimized out>, l=<optimized out>) at dl-init.c:36 #7 _dl_init (main_map=main_map@entry=0xbe8130, argc=4, argv=0x7fffffffdf98, env=0x7fffffffdfc0) at dl-init.c:126 #8 0x00007ffff7deec70 in dl_open_worker (a=a@entry=0x7fffffffc198) at dl-open.c:577 #9 0x00007ffff7de9ff4 in _dl_catch_error (objname=objname@entry=0x7fffffffc188, errstring=errstring@entry=0x7fffffffc190, mallocedp=mallocedp@entry=0x7fffffffc180, operate=operate@entry=0x7ffff7dee9a0 <dl_open_worker>, args=args@entry=0x7fffffffc198) at dl-error.c:187 #10 0x00007ffff7dee3bb in _dl_open (file=0xbcadb0 "/usr/lib/vlc/plugins/gui/libqt4_plugin.so", mode=-2147483647, caller_dlopen=<optimized out>, nsid=-2, argc=4, argv=0x7fffffffdf98, env=0x7fffffffdfc0) at dl-open.c:661 #11 0x00007ffff719402b in dlopen_doit (a=a@entry=0x7fffffffc3b0) at dlopen.c:66 #12 0x00007ffff7de9ff4 in _dl_catch_error (objname=0x761610, errstring=0x761618, mallocedp=0x761608, operate=0x7ffff7193fd0 <dlopen_doit>, args=0x7fffffffc3b0) at dl-error.c:187 #13 0x00007ffff719462d in _dlerror_run (operate=operate@entry=0x7ffff7193fd0 <dlopen_doit>, args=args@entry=0x7fffffffc3b0) at dlerror.c:163 #14 0x00007ffff71940c1 in __dlopen (file=<optimized out>, mode=<optimized out>) at dlopen.c:87 #15 0x00007fffe45fde9f in ?? () from /usr/lib/libvlccore.so.7 #16 0x00007fffe45e762d in ?? () from /usr/lib/libvlccore.so.7 #17 0x00007fffe45e7927 in ?? () from /usr/lib/libvlccore.so.7 #18 0x00007fffe45e7b99 in ?? () from /usr/lib/libvlccore.so.7 #19 0x00007fffe45e7e04 in ?? () from /usr/lib/libvlccore.so.7 #20 0x00007fffe45e8357 in ?? () from /usr/lib/libvlccore.so.7 #21 0x00007fffe457fd1d in libvlc_InternalInit () from /usr/lib/libvlccore.so.7 #22 0x00007fffe4857b83 in libvlc_new () from /usr/lib/libvlc.so.5 #23 0x00007fffe4a711ed in gem::plugins::videoVLC::videoVLC (this=0x841400) at videoVLC.cpp:62 #24 0x00007fffe4a712db in gem::PluginFactoryRegistrar::allocatorgem::plugins::videoVLC, gem::plugins::video () at ../../src/plugins/PluginFactoryTimple.h:134 #25 0x00007ffff36b5fef in doGetInstance (id=..., this=<optimized out>) at ../../src/plugins/PluginFactoryTimple.h:70 #26 getInstance (id=...) at ../../src/plugins/PluginFactoryTimple.h:96 #27 addPlugin (ID=..., available=<error reading variable: access outside bounds of object referenced via synthetic pointer>, this=0x7ef980) at video.cpp:81 #28 gem::plugins::video::getInstance () at video.cpp:112 #29 0x00007ffff3679f55 in gem::plugins::init () at PluginFactory.cpp:175 #30 0x000000000048911c in sys_do_load_lib () #31 0x0000000000489498 in sys_load_lib () #32 0x00000000004817d3 in glob_initfromgui () #33 0x00000000004702b8 in pd_typedmess () #34 0x0000000000479c1c in binbuf_eval () #35 0x00000000004845ec in socketreceiver_read () #36 0x000000000048395d in sys_domicrosleep.constprop () #37 0x0000000000480290 in m_mainloop () #38 0x00007ffff6deeec5 in __libc_start_main (main=0x412560 <main>, argc=4, argv=0x7fffffffdf98, init=<optimized out>, fini=<optimized out>, rtld_fini=<optimized out>, stack_end=0x7fffffffdf88) at libc-start.c:287 #39 0x000000000041258e in _start ()
- i did not try all example, but most work. i do however have some
problem with Gem/examples/10.glsl/05.multitexture_bis.pd if i open and close this patch, pd segfault (even without opening a rendering window). The patch did work.
afaict, this has been fixed as well.
nope, it is still crashing here.
Same here. gdb backtrace :
... eprecated/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/iem_tab.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/iem_tab.l_ia64 and failed tried /home/jack/Gem/abstractions/iem_tab.l_ia64 and failed tried /home/jack/pd-externals/iem_tab.l_ia64 and failed tried /usr/local/lib/pd-externals/iem_tab.l_ia64 and failed tried /usr/local/lib/pd/extra/iem_tab.l_ia64 and failed tried ./iem_tab.pd_linux and failed tried /home/jack/Gem/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/iem_tab.pd_linux and failed tried /home/jack/gridflow/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/iem_tab.pd_linux and failed tried /home/jack/Documents/PureData/PDabstractions/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/binfile/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/mapping/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/pmpd/iem_tab.pd_linux and failed tried /home/jack/pure-data/externals/iem/iem_tab/iem_tab.pd_linux and succeeded iem_tab (R-1.20) library loaded! (c) Thomas Musil 11.2011 musil@iem.at iem KUG Graz Austria tried ./Gem.l_ia64 and failed tried /home/jack/Gem/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/Gem.l_ia64 and failed tried /home/jack/gridflow/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/Gem.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/Gem.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/boids/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/Gem.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/Gem.l_ia64 and failed tried /home/jack/pdgst/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/Gem.l_ia64 and failed tried /home/jack/gridflow/abstractions/Gem.l_ia64 and failed tried /home/jack/gridflow/deprecated/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/Gem.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/Gem.l_ia64 and failed tried /home/jack/Gem/abstractions/Gem.l_ia64 and failed tried /home/jack/pd-externals/Gem.l_ia64 and failed tried /usr/local/lib/pd-externals/Gem.l_ia64 and failed tried /usr/local/lib/pd/extra/Gem.l_ia64 and failed tried ./Gem.pd_linux and succeeded GEM: Graphics Environment for Multimedia verbose(2): GEM: ver: 0.93.git f4b55e5 verbose(2): GEM: compiled: Aug 22 2014 verbose(2): GEM: maintained by IOhannes m zmoelnig verbose(2): GEM: Authors : Mark Danks (original version) verbose(2): GEM: Chris Clepper verbose(2): GEM: Cyrille Henry verbose(2): GEM: IOhannes m zmoelnig verbose(2): GEM: with help by Guenter Geiger, Daniel Heckenberg, James Tittle, Hans-Christoph Steiner, et al. verbose(2): GEM: found a bug? miss a feature? please report it: verbose(2): GEM: homepage http://gem.iem.at/ verbose(2): GEM: bug-tracker http://sourceforge.net/projects/pd-gem/ verbose(2): GEM: mailing-list http://lists.puredata.info/listinfo/gem-dev/ open: /etc/pd/gem.conf: No such file or directory open: /home/jack/.config/pure-data/gem.conf: No such file or directory open: ./gem.conf: No such file or directory tried ./Gem-meta.pd and succeeded verbose(2): GEM: compiled for MMX/SSE2 architecture verbose(2): GEM: using SSE2 optimization verbose(2): GEM: detected 8 CPUs load plugins 'film' in './' pattern : ./gem_film*.so dylib loading file './gem_filmGMERLIN.so'! dylib loading file './gem_filmMPEG3.so'! dylib loading file './gem_filmQT4L.so'! load plugins 'image' in './' pattern : ./gem_image*.so dylib loading file './gem_imageJPEG.so'! dylib loading file './gem_imageMAGICK.so'! dylib loading file './gem_imageSGI.so'! dylib loading file './gem_imageTIFF.so'! GEM: image loading support: magick SGI jpeg tiff not reloading 'image' plugins (already 4 loaded) load plugins 'image' in './' pattern : ./gem_image*.so dylib loading file './gem_imageJPEG.so'! dylib loading file './gem_imageMAGICK.so'! dylib loading file './gem_imageSGI.so'! dylib loading file './gem_imageTIFF.so'! GEM: image saving support: SGI jpeg magick tiff load plugins 'model' in './' pattern : ./gem_model*.so dylib loading file './gem_modelOBJ.so'! library loading returned: dlerror './gem_modelOBJ.so: undefined symbol: __GLEW_VERSION_1_1' load plugins 'record' in './' pattern : ./gem_record*.so dylib loading file './gem_recordQT4L.so'! dylib loading file './gem_recordV4L.so'! dylib loading file './gem_recordV4L2.so'! verbose(4): QT4L: default codec is: 'dv' load plugins 'video' in './' pattern : ./gem_video*.so dylib loading file './gem_videoDC1394.so'! dylib loading file './gem_videoV4L.so'! dylib loading file './gem_videoV4L2.so'! tried ./pdstring.l_ia64 and failed tried /home/jack/Gem/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/pdstring.l_ia64 and failed tried /home/jack/gridflow/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/pdstring.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/pdstring.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/boids/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/pdstring.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/pdstring.l_ia64 and failed tried /home/jack/pdgst/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/pdstring.l_ia64 and failed tried /home/jack/gridflow/abstractions/pdstring.l_ia64 and failed tried /home/jack/gridflow/deprecated/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/pdstring.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/pdstring.l_ia64 and failed tried /home/jack/Gem/abstractions/pdstring.l_ia64 and failed tried /home/jack/pd-externals/pdstring.l_ia64 and failed tried /usr/local/lib/pd-externals/pdstring.l_ia64 and failed tried /usr/local/lib/pd/extra/pdstring.l_ia64 and failed tried ./pdstring.pd_linux and failed tried /home/jack/Gem/pdstring.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/pdstring.pd_linux and succeeded
pdstring: byte-string externals version 0.10-2 by Bryan Jurish pdstring: compiled by jack on Thu Aug 21 15:14:08 CEST 2014 tried ./tcpserver.l_ia64 and failed tried /home/jack/Gem/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/tcpserver.l_ia64 and failed tried /home/jack/gridflow/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/tcpserver.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/tcpserver.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/boids/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/tcpserver.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/tcpserver.l_ia64 and failed tried /home/jack/pdgst/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/tcpserver.l_ia64 and failed tried /home/jack/gridflow/abstractions/tcpserver.l_ia64 and failed tried /home/jack/gridflow/deprecated/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/tcpserver.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/tcpserver.l_ia64 and failed tried /home/jack/Gem/abstractions/tcpserver.l_ia64 and failed tried /home/jack/pd-externals/tcpserver.l_ia64 and failed tried /usr/local/lib/pd-externals/tcpserver.l_ia64 and failed tried /usr/local/lib/pd/extra/tcpserver.l_ia64 and failed tried ./tcpserver.pd_linux and failed tried /home/jack/Gem/tcpserver.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/tcpserver.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/tcpserver.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/tcpserver.pd_linux and failed tried /home/jack/gridflow/tcpserver.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/tcpserver.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/tcpserver.pd_linux and succeeded iemnet - networking with Pd: [tcpserver] compiled on Aug 8 2014 at 17:36:18 copyright (c) 2010-2011 IOhannes m zmoelnig, IEM based on mrpeach/net, based on maxlib tried ./pdlua.l_ia64 and failed tried /home/jack/Gem/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/pdlua.l_ia64 and failed tried /home/jack/gridflow/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/pdlua.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/pdlua.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/boids/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/pdlua.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/pdlua.l_ia64 and failed tried /home/jack/pdgst/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/pdlua.l_ia64 and failed tried /home/jack/gridflow/abstractions/pdlua.l_ia64 and failed tried /home/jack/gridflow/deprecated/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/pdlua.l_ia64 and failed tried /home/jack/Gem/abstractions/pdlua.l_ia64 and failed tried /home/jack/pd-externals/pdlua.l_ia64 and failed tried /usr/local/lib/pd-externals/pdlua.l_ia64 and failed tried /usr/local/lib/pd/extra/pdlua.l_ia64 and failed tried ./pdlua.pd_linux and failed tried /home/jack/Gem/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/pdlua.pd_linux and failed tried /home/jack/gridflow/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/pdlua.pd_linux and failed tried /home/jack/Documents/PureData/PDabstractions/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/binfile/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/mapping/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/pmpd/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/iem/iem_tab/pdlua.pd_linux and failed tried /home/jack/pure-data/abstractions/footils/list-abs/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/boids/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/ggee/control/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/hcs/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/ggee/filters/pdlua.pd_linux and failed tried /home/jack/Gem/extra/pix_fiducialtrack/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/zexy/abs/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/share_mem/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/iem/comport/comport/pdlua.pd_linux and failed tried /home/jack/pdgst/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/august/readanysf~/pdlua.pd_linux and failed tried /home/jack/gridflow/abstractions/pdlua.pd_linux and failed tried /home/jack/gridflow/deprecated/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/moocow/readdir/src/pdlua.pd_linux and failed tried /home/jack/Gem/abstractions/pdlua.pd_linux and failed tried /home/jack/pd-externals/pdlua.pd_linux and failed tried /usr/local/lib/pd-externals/pdlua.pd_linux and failed tried /usr/local/lib/pd/extra/pdlua.pd_linux and failed tried ./pdlua/pdlua.l_ia64 and failed tried /home/jack/Gem/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/pdlua/pdlua.l_ia64 and failed tried /home/jack/gridflow/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/pdlua/pdlua.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/boids/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/pdlua/pdlua.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/pdlua/pdlua.l_ia64 and failed tried /home/jack/pdgst/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/pdlua/pdlua.l_ia64 and failed tried /home/jack/gridflow/abstractions/pdlua/pdlua.l_ia64 and failed tried /home/jack/gridflow/deprecated/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/pdlua/pdlua.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/pdlua/pdlua.l_ia64 and failed tried /home/jack/Gem/abstractions/pdlua/pdlua.l_ia64 and failed tried /home/jack/pd-externals/pdlua/pdlua.l_ia64 and failed tried /usr/local/lib/pd-externals/pdlua/pdlua.l_ia64 and failed tried /usr/local/lib/pd/extra/pdlua/pdlua.l_ia64 and failed tried ./pdlua/pdlua.pd_linux and failed tried /home/jack/Gem/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/pdlua/pdlua.pd_linux and failed tried /home/jack/gridflow/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/pdlua/pdlua.pd_linux and failed tried /home/jack/Documents/PureData/PDabstractions/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/binfile/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/mapping/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/pmpd/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/iem/iem_tab/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/abstractions/footils/list-abs/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/boids/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/ggee/control/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/hcs/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/ggee/filters/pdlua/pdlua.pd_linux and failed tried /home/jack/Gem/extra/pix_fiducialtrack/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/zexy/abs/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/share_mem/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/iem/comport/comport/pdlua/pdlua.pd_linux and failed tried /home/jack/pdgst/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/august/readanysf~/pdlua/pdlua.pd_linux and failed tried /home/jack/gridflow/abstractions/pdlua/pdlua.pd_linux and failed tried /home/jack/gridflow/deprecated/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/pdlua/pdlua.pd_linux and failed tried /home/jack/pure-data/externals/moocow/readdir/src/pdlua/pdlua.pd_linux and failed tried /home/jack/Gem/abstractions/pdlua/pdlua.pd_linux and failed tried /home/jack/pd-externals/pdlua/pdlua.pd_linux and failed tried /usr/local/lib/pd-externals/pdlua/pdlua.pd_linux and failed tried /usr/local/lib/pd/extra/pdlua/pdlua.pd_linux and failed pdlua: can't load library tried ./tcpclient.l_ia64 and failed tried /home/jack/Gem/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/tcpclient.l_ia64 and failed tried /home/jack/gridflow/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/tcpclient.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/tcpclient.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/boids/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/tcpclient.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/tcpclient.l_ia64 and failed tried /home/jack/pdgst/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/tcpclient.l_ia64 and failed tried /home/jack/gridflow/abstractions/tcpclient.l_ia64 and failed tried /home/jack/gridflow/deprecated/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/tcpclient.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/tcpclient.l_ia64 and failed tried /home/jack/Gem/abstractions/tcpclient.l_ia64 and failed tried /home/jack/pd-externals/tcpclient.l_ia64 and failed tried /usr/local/lib/pd-externals/tcpclient.l_ia64 and failed tried /usr/local/lib/pd/extra/tcpclient.l_ia64 and failed tried ./tcpclient.pd_linux and failed tried /home/jack/Gem/tcpclient.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/tcpclient.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/tcpclient.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/tcpclient.pd_linux and failed tried /home/jack/gridflow/tcpclient.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/tcpclient.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/tcpclient.pd_linux and succeeded iemnet - networking with Pd: [tcpclient] compiled on Aug 8 2014 at 17:36:18 copyright (c) 2010-2011 IOhannes m zmoelnig, IEM based on mrpeach/net, based on maxlib tried ./boids2d.l_ia64 and failed tried /home/jack/Gem/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/boids2d.l_ia64 and failed tried /home/jack/gridflow/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/boids2d.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/boids2d.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/boids/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/boids2d.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/boids2d.l_ia64 and failed tried /home/jack/pdgst/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/boids2d.l_ia64 and failed tried /home/jack/gridflow/abstractions/boids2d.l_ia64 and failed tried /home/jack/gridflow/deprecated/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/boids2d.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/boids2d.l_ia64 and failed tried /home/jack/Gem/abstractions/boids2d.l_ia64 and failed tried /home/jack/pd-externals/boids2d.l_ia64 and failed tried /usr/local/lib/pd-externals/boids2d.l_ia64 and failed tried /usr/local/lib/pd/extra/boids2d.l_ia64 and failed tried ./boids2d.pd_linux and failed tried /home/jack/Gem/boids2d.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/boids2d.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/boids2d.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/boids2d.pd_linux and failed tried /home/jack/gridflow/boids2d.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/boids2d.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/boids2d.pd_linux and failed tried /home/jack/Documents/PureData/PDabstractions/boids2d.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/binfile/boids2d.pd_linux and failed tried /home/jack/pure-data/externals/mapping/boids2d.pd_linux and failed tried /home/jack/pure-data/externals/pmpd/boids2d.pd_linux and failed tried /home/jack/pure-data/externals/iem/iem_tab/boids2d.pd_linux and failed tried /home/jack/pure-data/abstractions/footils/list-abs/boids2d.pd_linux and failed tried /home/jack/pure-data/externals/boids/boids2d.pd_linux and succeeded verbose(4): boids2d 2005-2006 a.sier / jasch 1995-2003 eric l. singer Aug 8 2014 17:35:36 tried ./boids3d.l_ia64 and failed tried /home/jack/Gem/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/boids3d.l_ia64 and failed tried /home/jack/gridflow/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/boids3d.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/boids3d.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/boids/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/boids3d.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/boids3d.l_ia64 and failed tried /home/jack/pdgst/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/boids3d.l_ia64 and failed tried /home/jack/gridflow/abstractions/boids3d.l_ia64 and failed tried /home/jack/gridflow/deprecated/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/boids3d.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/boids3d.l_ia64 and failed tried /home/jack/Gem/abstractions/boids3d.l_ia64 and failed tried /home/jack/pd-externals/boids3d.l_ia64 and failed tried /usr/local/lib/pd-externals/boids3d.l_ia64 and failed tried /usr/local/lib/pd/extra/boids3d.l_ia64 and failed tried ./boids3d.pd_linux and failed tried /home/jack/Gem/boids3d.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/boids3d.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/boids3d.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/boids3d.pd_linux and failed tried /home/jack/gridflow/boids3d.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/boids3d.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/boids3d.pd_linux and failed tried /home/jack/Documents/PureData/PDabstractions/boids3d.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/binfile/boids3d.pd_linux and failed tried /home/jack/pure-data/externals/mapping/boids3d.pd_linux and failed tried /home/jack/pure-data/externals/pmpd/boids3d.pd_linux and failed tried /home/jack/pure-data/externals/iem/iem_tab/boids3d.pd_linux and failed tried /home/jack/pure-data/abstractions/footils/list-abs/boids3d.pd_linux and failed tried /home/jack/pure-data/externals/boids/boids3d.pd_linux and succeeded verbose(4): boids3d 2005-2006 a.sier / jasch � 1995-2003 eric l. singer Aug 8 2014 17:35:36 tried ./pdgst.l_ia64 and failed tried /home/jack/Gem/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/pdgst.l_ia64 and failed tried /home/jack/gridflow/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/pdgst.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/pdgst.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/boids/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/pdgst.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/pdgst.l_ia64 and failed tried /home/jack/pdgst/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/pdgst.l_ia64 and failed tried /home/jack/gridflow/abstractions/pdgst.l_ia64 and failed tried /home/jack/gridflow/deprecated/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/pdgst.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/pdgst.l_ia64 and failed tried /home/jack/Gem/abstractions/pdgst.l_ia64 and failed tried /home/jack/pd-externals/pdgst.l_ia64 and failed tried /usr/local/lib/pd-externals/pdgst.l_ia64 and failed tried /usr/local/lib/pd/extra/pdgst.l_ia64 and failed tried ./pdgst.pd_linux and failed tried /home/jack/Gem/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/pdgst.pd_linux and failed tried /home/jack/gridflow/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/pdgst.pd_linux and failed tried /home/jack/Documents/PureData/PDabstractions/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/binfile/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/mapping/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/pmpd/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/iem/iem_tab/pdgst.pd_linux and failed tried /home/jack/pure-data/abstractions/footils/list-abs/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/boids/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/ggee/control/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/hcs/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/ggee/filters/pdgst.pd_linux and failed tried /home/jack/Gem/extra/pix_fiducialtrack/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/zexy/abs/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/share_mem/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/pdgst.pd_linux and failed tried /home/jack/pure-data/externals/iem/comport/comport/pdgst.pd_linux and failed tried /home/jack/pdgst/pdgst.pd_linux and succeeded pdgst ver0.1 (copyleft) IOhannes m zmoelnig @ IEM / KUG compiled on Aug 22 2013 at 14:05:11 compiled against Pd version 0.45.0.test 2 tried ./zexy.l_ia64 and failed tried /home/jack/Gem/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/zexy.l_ia64 and failed tried /home/jack/gridflow/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/zexy.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/zexy.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/boids/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/zexy.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/zexy.l_ia64 and failed tried /home/jack/pdgst/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/zexy.l_ia64 and failed tried /home/jack/gridflow/abstractions/zexy.l_ia64 and failed tried /home/jack/gridflow/deprecated/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/zexy.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/zexy.l_ia64 and failed tried /home/jack/Gem/abstractions/zexy.l_ia64 and failed tried /home/jack/pd-externals/zexy.l_ia64 and failed tried /usr/local/lib/pd-externals/zexy.l_ia64 and failed tried /usr/local/lib/pd/extra/zexy.l_ia64 and failed tried ./zexy.pd_linux and failed tried /home/jack/Gem/zexy.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/zexy.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/zexy.pd_linux and succeeded
♡♡♡ ♡ the zexy external 2.2.6svn ♡ (c) 1999-2012 IOhannes m zmölnig ♡ forum::für::umläute ♡ iem @ kug ♡ compiled: Aug 21 2014 ♡ send me a 'help' message ♡♡♡
warning: class 'abs~' overwritten; old one renamed 'abs~_aliased' matchbox: OSC-pattern matching code (c) Matt Wright, CNMAT warning: class 'wrap' overwritten; old one renamed 'wrap_aliased' tried /home/jack/Gem/examples/10.glsl/09.vertex_texture_fetching.pd and succeeded not reloading 'image' plugins (already 4 loaded) [New Thread 0x7fffe1f1e700 (LWP 32135)] tried /home/jack/Gem/examples/10.glsl/img1.jpg and succeeded verbose(4): [pix_image]: loading image '/home/jack/Gem/examples/10.glsl/img1.jpg' with ID:1 tried /home/jack/Gem/examples/10.glsl/gemwin.l_ia64 and failed tried /home/jack/Gem/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/gemwin.l_ia64 and failed tried /home/jack/gridflow/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/gemwin.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/gemwin.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/boids/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/gemwin.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/gemwin.l_ia64 and failed tried /home/jack/pdgst/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/gemwin.l_ia64 and failed tried /home/jack/gridflow/abstractions/gemwin.l_ia64 and failed tried /home/jack/gridflow/deprecated/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/gemwin.l_ia64 and failed tried /home/jack/Gem/abstractions/gemwin.l_ia64 and failed tried /home/jack/pd-externals/gemwin.l_ia64 and failed tried /usr/local/lib/pd-externals/gemwin.l_ia64 and failed tried /usr/local/lib/pd/extra/gemwin.l_ia64 and failed tried /home/jack/Gem/examples/10.glsl/gemwin.pd_linux and failed tried /home/jack/Gem/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/gemwin.pd_linux and failed tried /home/jack/gridflow/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/gemwin.pd_linux and failed tried /home/jack/Documents/PureData/PDabstractions/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/binfile/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/mapping/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/pmpd/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/iem/iem_tab/gemwin.pd_linux and failed tried /home/jack/pure-data/abstractions/footils/list-abs/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/boids/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/ggee/control/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/hcs/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/ggee/filters/gemwin.pd_linux and failed tried /home/jack/Gem/extra/pix_fiducialtrack/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/zexy/abs/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/share_mem/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/iem/comport/comport/gemwin.pd_linux and failed tried /home/jack/pdgst/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/august/readanysf~/gemwin.pd_linux and failed tried /home/jack/gridflow/abstractions/gemwin.pd_linux and failed tried /home/jack/gridflow/deprecated/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/moocow/readdir/src/gemwin.pd_linux and failed tried /home/jack/Gem/abstractions/gemwin.pd_linux and failed tried /home/jack/pd-externals/gemwin.pd_linux and failed tried /usr/local/lib/pd-externals/gemwin.pd_linux and failed tried /usr/local/lib/pd/extra/gemwin.pd_linux and failed tried /home/jack/Gem/examples/10.glsl/gemwin/gemwin.l_ia64 and failed tried /home/jack/Gem/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/gemwin/gemwin.l_ia64 and failed tried /home/jack/gridflow/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/gemwin/gemwin.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/boids/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/gemwin/gemwin.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/gemwin/gemwin.l_ia64 and failed tried /home/jack/pdgst/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/gemwin/gemwin.l_ia64 and failed tried /home/jack/gridflow/abstractions/gemwin/gemwin.l_ia64 and failed tried /home/jack/gridflow/deprecated/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/gemwin/gemwin.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/gemwin/gemwin.l_ia64 and failed tried /home/jack/Gem/abstractions/gemwin/gemwin.l_ia64 and failed tried /home/jack/pd-externals/gemwin/gemwin.l_ia64 and failed tried /usr/local/lib/pd-externals/gemwin/gemwin.l_ia64 and failed tried /usr/local/lib/pd/extra/gemwin/gemwin.l_ia64 and failed tried /home/jack/Gem/examples/10.glsl/gemwin/gemwin.pd_linux and failed tried /home/jack/Gem/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/gemwin/gemwin.pd_linux and failed tried /home/jack/gridflow/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/gemwin/gemwin.pd_linux and failed tried /home/jack/Documents/PureData/PDabstractions/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/binfile/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/mapping/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/pmpd/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/iem/iem_tab/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/abstractions/footils/list-abs/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/boids/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/ggee/control/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/hcs/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/ggee/filters/gemwin/gemwin.pd_linux and failed tried /home/jack/Gem/extra/pix_fiducialtrack/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/zexy/abs/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/share_mem/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/iem/comport/comport/gemwin/gemwin.pd_linux and failed tried /home/jack/pdgst/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/august/readanysf~/gemwin/gemwin.pd_linux and failed tried /home/jack/gridflow/abstractions/gemwin/gemwin.pd_linux and failed tried /home/jack/gridflow/deprecated/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/gemwin/gemwin.pd_linux and failed tried /home/jack/pure-data/externals/moocow/readdir/src/gemwin/gemwin.pd_linux and failed tried /home/jack/Gem/abstractions/gemwin/gemwin.pd_linux and failed tried /home/jack/pd-externals/gemwin/gemwin.pd_linux and failed tried /usr/local/lib/pd-externals/gemwin/gemwin.pd_linux and failed tried /usr/local/lib/pd/extra/gemwin/gemwin.pd_linux and failed tried /home/jack/Gem/examples/10.glsl/gemwin.pd and failed tried /home/jack/Gem/gemwin.pd and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/gemwin.pd and failed tried /home/jack/pure-data/externals/zexy/src/.libs/gemwin.pd and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/gemwin.pd and failed tried /home/jack/gridflow/gemwin.pd and failed tried /home/jack/pure-data/externals/mrpeach/osc/gemwin.pd and failed tried /home/jack/pure-data/externals/iem/iemnet/gemwin.pd and failed tried /home/jack/Documents/PureData/PDabstractions/gemwin.pd and failed tried /home/jack/pure-data/externals/mrpeach/binfile/gemwin.pd and failed tried /home/jack/pure-data/externals/mapping/gemwin.pd and failed tried /home/jack/pure-data/externals/pmpd/gemwin.pd and failed tried /home/jack/pure-data/externals/iem/iem_tab/gemwin.pd and failed tried /home/jack/pure-data/abstractions/footils/list-abs/gemwin.pd and failed tried /home/jack/pure-data/externals/boids/gemwin.pd and failed tried /home/jack/pure-data/externals/ggee/control/gemwin.pd and failed tried /home/jack/pure-data/externals/hcs/gemwin.pd and failed tried /home/jack/pure-data/externals/ggee/filters/gemwin.pd and failed tried /home/jack/Gem/extra/pix_fiducialtrack/gemwin.pd and failed tried /home/jack/pure-data/externals/zexy/abs/gemwin.pd and failed tried /home/jack/pure-data/externals/share_mem/gemwin.pd and failed tried /home/jack/pure-data/externals/moocow/pdstring/gemwin.pd and failed tried /home/jack/pure-data/externals/iem/comport/comport/gemwin.pd and failed tried /home/jack/pdgst/gemwin.pd and failed tried /home/jack/pure-data/externals/august/readanysf~/gemwin.pd and failed tried /home/jack/gridflow/abstractions/gemwin.pd and failed tried /home/jack/gridflow/deprecated/gemwin.pd and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/gemwin.pd and failed tried /home/jack/pure-data/externals/moocow/readdir/src/gemwin.pd and failed tried /home/jack/Gem/abstractions/gemwin.pd and succeeded tried /home/jack/Gem/abstractions/gemdefaultwindow.l_ia64 and failed tried /home/jack/Gem/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/gemdefaultwindow.l_ia64 and failed tried /home/jack/gridflow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/gemdefaultwindow.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/boids/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/gemdefaultwindow.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/gemdefaultwindow.l_ia64 and failed tried /home/jack/pdgst/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/gemdefaultwindow.l_ia64 and failed tried /home/jack/gridflow/abstractions/gemdefaultwindow.l_ia64 and failed tried /home/jack/gridflow/deprecated/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/gemdefaultwindow.l_ia64 and failed tried /home/jack/Gem/abstractions/gemdefaultwindow.l_ia64 and failed tried /home/jack/pd-externals/gemdefaultwindow.l_ia64 and failed tried /usr/local/lib/pd-externals/gemdefaultwindow.l_ia64 and failed tried /usr/local/lib/pd/extra/gemdefaultwindow.l_ia64 and failed tried /home/jack/Gem/abstractions/gemdefaultwindow.pd_linux and failed tried /home/jack/Gem/gemdefaultwindow.pd_linux and failed tried
/home/jack/pure-data/externals/moocow/pdstring/src/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/gemdefaultwindow.pd_linux and failed tried /home/jack/gridflow/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/gemdefaultwindow.pd_linux and failed tried /home/jack/Documents/PureData/PDabstractions/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/binfile/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/mapping/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/pmpd/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/iem/iem_tab/gemdefaultwindow.pd_linux and failed tried
/home/jack/pure-data/abstractions/footils/list-abs/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/boids/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/ggee/control/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/hcs/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/ggee/filters/gemdefaultwindow.pd_linux and failed tried /home/jack/Gem/extra/pix_fiducialtrack/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/zexy/abs/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/share_mem/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/gemdefaultwindow.pd_linux and failed tried
/home/jack/pure-data/externals/iem/comport/comport/gemdefaultwindow.pd_linux and failed tried /home/jack/pdgst/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/august/readanysf~/gemdefaultwindow.pd_linux and failed tried /home/jack/gridflow/abstractions/gemdefaultwindow.pd_linux and failed tried /home/jack/gridflow/deprecated/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/gemdefaultwindow.pd_linux and failed tried /home/jack/pure-data/externals/moocow/readdir/src/gemdefaultwindow.pd_linux and failed tried /home/jack/Gem/abstractions/gemdefaultwindow.pd_linux and failed tried /home/jack/pd-externals/gemdefaultwindow.pd_linux and failed tried /usr/local/lib/pd-externals/gemdefaultwindow.pd_linux and failed tried /usr/local/lib/pd/extra/gemdefaultwindow.pd_linux and failed tried /home/jack/Gem/abstractions/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/Gem/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried
/home/jack/pure-data/externals/moocow/pdstring/src/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried
/home/jack/pure-data/externals/zexy/src/.libs/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried
/home/jack/pure-data/externals/iem/iemmatrix/src/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/gridflow/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried
/home/jack/pure-data/externals/mrpeach/osc/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried
/home/jack/pure-data/externals/iem/iemnet/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried
/home/jack/Documents/PureData/PDabstractions/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried
/home/jack/pure-data/externals/mrpeach/binfile/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried
/home/jack/pure-data/externals/mapping/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried
/home/jack/pure-data/externals/pmpd/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried
/home/jack/pure-data/externals/iem/iem_tab/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried
/home/jack/pure-data/abstractions/footils/list-abs/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried
/home/jack/pure-data/externals/boids/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried
/home/jack/pure-data/externals/ggee/control/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried
/home/jack/pure-data/externals/ggee/filters/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried
/home/jack/Gem/extra/pix_fiducialtrack/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried
/home/jack/pure-data/externals/zexy/abs/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried
/home/jack/pure-data/externals/share_mem/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried
/home/jack/pure-data/externals/moocow/pdstring/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried
/home/jack/pure-data/externals/iem/comport/comport/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pdgst/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried
/home/jack/pure-data/externals/august/readanysf~/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/gridflow/abstractions/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/gridflow/deprecated/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried
/home/jack/pure-data/externals/loaders/pdlua/src/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried
/home/jack/pure-data/externals/moocow/readdir/src/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/Gem/abstractions/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/pd-externals/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /usr/local/lib/pd-externals/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /usr/local/lib/pd/extra/gemdefaultwindow/gemdefaultwindow.l_ia64 and failed tried /home/jack/Gem/abstractions/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/Gem/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried
/home/jack/pure-data/externals/moocow/pdstring/src/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried
/home/jack/pure-data/externals/zexy/src/.libs/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried
/home/jack/pure-data/externals/iem/iemmatrix/src/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/gridflow/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried
/home/jack/pure-data/externals/mrpeach/osc/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried
/home/jack/pure-data/externals/iem/iemnet/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried
/home/jack/Documents/PureData/PDabstractions/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried
/home/jack/pure-data/externals/mrpeach/binfile/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried
/home/jack/pure-data/externals/mapping/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried
/home/jack/pure-data/externals/pmpd/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried
/home/jack/pure-data/externals/iem/iem_tab/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried
/home/jack/pure-data/abstractions/footils/list-abs/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried
/home/jack/pure-data/externals/boids/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried
/home/jack/pure-data/externals/ggee/control/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried
/home/jack/pure-data/externals/hcs/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried
/home/jack/pure-data/externals/ggee/filters/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried
/home/jack/Gem/extra/pix_fiducialtrack/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried
/home/jack/pure-data/externals/zexy/abs/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried
/home/jack/pure-data/externals/share_mem/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried
/home/jack/pure-data/externals/moocow/pdstring/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried
/home/jack/pure-data/externals/iem/comport/comport/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pdgst/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried
/home/jack/pure-data/externals/august/readanysf~/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/gridflow/abstractions/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/gridflow/deprecated/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried
/home/jack/pure-data/externals/loaders/pdlua/src/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried
/home/jack/pure-data/externals/moocow/readdir/src/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/Gem/abstractions/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/pd-externals/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /usr/local/lib/pd-externals/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /usr/local/lib/pd/extra/gemdefaultwindow/gemdefaultwindow.pd_linux and failed tried /home/jack/Gem/abstractions/gemdefaultwindow.pd and succeeded tried /home/jack/Gem/abstractions/gemglxwindow.l_ia64 and failed tried /home/jack/Gem/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/gemglxwindow.l_ia64 and failed tried /home/jack/gridflow/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/gemglxwindow.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/boids/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/gemglxwindow.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/gemglxwindow.l_ia64 and failed tried /home/jack/pdgst/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/gemglxwindow.l_ia64 and failed tried /home/jack/gridflow/abstractions/gemglxwindow.l_ia64 and failed tried /home/jack/gridflow/deprecated/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/gemglxwindow.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/gemglxwindow.l_ia64 and failed tried /home/jack/Gem/abstractions/gemglxwindow.l_ia64 and failed tried /home/jack/pd-externals/gemglxwindow.l_ia64 and failed tried /usr/local/lib/pd-externals/gemglxwindow.l_ia64 and failed tried /usr/local/lib/pd/extra/gemglxwindow.l_ia64 and failed tried /home/jack/Gem/abstractions/gemglxwindow.pd_linux and failed tried /home/jack/Gem/gemglxwindow.pd_linux and succeeded tried /home/jack/Gem/abstractions/expr.l_ia64 and failed tried /home/jack/Gem/expr.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/expr.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/src/.libs/expr.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/expr.l_ia64 and failed tried /home/jack/gridflow/expr.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/osc/expr.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iemnet/expr.l_ia64 and failed tried /home/jack/Documents/PureData/PDabstractions/expr.l_ia64 and failed tried /home/jack/pure-data/externals/mrpeach/binfile/expr.l_ia64 and failed tried /home/jack/pure-data/externals/mapping/expr.l_ia64 and failed tried /home/jack/pure-data/externals/pmpd/expr.l_ia64 and failed tried /home/jack/pure-data/externals/iem/iem_tab/expr.l_ia64 and failed tried /home/jack/pure-data/abstractions/footils/list-abs/expr.l_ia64 and failed tried /home/jack/pure-data/externals/boids/expr.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/control/expr.l_ia64 and failed tried /home/jack/pure-data/externals/hcs/expr.l_ia64 and failed tried /home/jack/pure-data/externals/ggee/filters/expr.l_ia64 and failed tried /home/jack/Gem/extra/pix_fiducialtrack/expr.l_ia64 and failed tried /home/jack/pure-data/externals/zexy/abs/expr.l_ia64 and failed tried /home/jack/pure-data/externals/share_mem/expr.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/pdstring/expr.l_ia64 and failed tried /home/jack/pure-data/externals/iem/comport/comport/expr.l_ia64 and failed tried /home/jack/pdgst/expr.l_ia64 and failed tried /home/jack/pure-data/externals/august/readanysf~/expr.l_ia64 and failed tried /home/jack/gridflow/abstractions/expr.l_ia64 and failed tried /home/jack/gridflow/deprecated/expr.l_ia64 and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/expr.l_ia64 and failed tried /home/jack/pure-data/externals/moocow/readdir/src/expr.l_ia64 and failed tried /home/jack/Gem/abstractions/expr.l_ia64 and failed tried /home/jack/pd-externals/expr.l_ia64 and failed tried /usr/local/lib/pd-externals/expr.l_ia64 and failed tried /usr/local/lib/pd/extra/expr.l_ia64 and failed tried /home/jack/Gem/abstractions/expr.pd_linux and failed tried /home/jack/Gem/expr.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/src/expr.pd_linux and failed tried /home/jack/pure-data/externals/zexy/src/.libs/expr.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemmatrix/src/expr.pd_linux and failed tried /home/jack/gridflow/expr.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/osc/expr.pd_linux and failed tried /home/jack/pure-data/externals/iem/iemnet/expr.pd_linux and failed tried /home/jack/Documents/PureData/PDabstractions/expr.pd_linux and failed tried /home/jack/pure-data/externals/mrpeach/binfile/expr.pd_linux and failed tried /home/jack/pure-data/externals/mapping/expr.pd_linux and failed tried /home/jack/pure-data/externals/pmpd/expr.pd_linux and failed tried /home/jack/pure-data/externals/iem/iem_tab/expr.pd_linux and failed tried /home/jack/pure-data/abstractions/footils/list-abs/expr.pd_linux and failed tried /home/jack/pure-data/externals/boids/expr.pd_linux and failed tried /home/jack/pure-data/externals/ggee/control/expr.pd_linux and failed tried /home/jack/pure-data/externals/hcs/expr.pd_linux and failed tried /home/jack/pure-data/externals/ggee/filters/expr.pd_linux and failed tried /home/jack/Gem/extra/pix_fiducialtrack/expr.pd_linux and failed tried /home/jack/pure-data/externals/zexy/abs/expr.pd_linux and failed tried /home/jack/pure-data/externals/share_mem/expr.pd_linux and failed tried /home/jack/pure-data/externals/moocow/pdstring/expr.pd_linux and failed tried /home/jack/pure-data/externals/iem/comport/comport/expr.pd_linux and failed tried /home/jack/pdgst/expr.pd_linux and failed tried /home/jack/pure-data/externals/august/readanysf~/expr.pd_linux and failed tried /home/jack/gridflow/abstractions/expr.pd_linux and failed tried /home/jack/gridflow/deprecated/expr.pd_linux and failed tried /home/jack/pure-data/externals/loaders/pdlua/src/expr.pd_linux and failed tried /home/jack/pure-data/externals/moocow/readdir/src/expr.pd_linux and failed tried /home/jack/Gem/abstractions/expr.pd_linux and failed tried /home/jack/pd-externals/expr.pd_linux and failed tried /usr/local/lib/pd-externals/expr.pd_linux and failed tried /usr/local/lib/pd/extra/expr.pd_linux and succeeded expr, expr~, fexpr~ version 0.4 under GNU Lesser General Public License error: gemglxwindow: no method for 'topmost' verbose(4): ... you might be able to track this down from the Find menu. error: gemglxwindow: no method for 'menubar' error: gemglxwindow: no method for 'secondscreen' [pix_texture]: using mode 0: TEXTURE_2D
Program received signal SIGSEGV, Segmentation fault. 0x00007ffff36c7d39 in gemframebuffer::destroyFBO (this=0xbc44b0) at gemframebuffer.cpp:348 348 if(!GLEW_EXT_framebuffer_object) (gdb) bt #0 0x00007ffff36c7d39 in gemframebuffer::destroyFBO (this=0xbc44b0) at gemframebuffer.cpp:348 #1 0x00007ffff36c7dfc in gemframebuffer::~gemframebuffer (this=0xbc44b0, __in_chrg=<optimized out>) at gemframebuffer.cpp:75 #2 0x00007ffff36c7e39 in gemframebuffer::~gemframebuffer (this=0xbc44b0, __in_chrg=<optimized out>) at gemframebuffer.cpp:77 #3 0x000000000046e409 in pd_free () #4 0x00000000004180ad in glist_delete () #5 0x0000000000413d88 in canvas_free () #6 0x000000000046e409 in pd_free () #7 0x00000000004703cd in pd_typedmess () #8 0x000000000047018c in pd_typedmess () #9 0x0000000000479c1c in binbuf_eval () #10 0x00000000004845ec in socketreceiver_read () #11 0x000000000048395d in sys_domicrosleep.constprop () #12 0x0000000000480290 in m_mainloop () #13 0x00007ffff6deeec5 in __libc_start_main (main=0x412560 <main>, argc=5, argv=0x7fffffffdf58, init=<optimized out>, fini=<optimized out>, rtld_fini=<optimized out>, stack_end=0x7fffffffdf48) at libc-start.c:287 #14 0x000000000041258e in _start ()
++
Jack
- some other shader example did not render anything unless i configure
optimus to use the nvidia card. It's not a gem fault, just the intel HD and it's driver.
yep :-)
it's sad that intel driver developer are not reactive like you!
- gemwin use to send 1 / 0 when start / stop rendering. i sometime use
this to load shader, like in example Gem/examples/10.glsl/09... In this example, i have to manually load the shader.
i'll have a look. the problem is, that now there can be multiple windows, so if you close one window (but leave the other open), sending a "gem_state 0" doesn't make much sense. maybe gem_state should send the number of open contexts instead. (so when you create the 2nd window, you get a "gem_state 2" message, and when you destroy the first one (but leave the second one open, you get a "gem_state 1")
well, it have to be send only by the gemhead that is rendering on the corresponding window. in fact gemhead still have to be replaced by an abstraction, so i guess that this abstraction should be in charge of filtering gem_stat that did not concern it's window. (?)
- gemmouse work, but not gemkeyname
yes, that's a bug.
should i fill a bug report, or bill it be fixed before? ;-)
cheers c
gfmrdsa IOhannes
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
Le 21/08/2014 19:13, Cyrille Henry a écrit :
- i did not try all example, but most work. i do however have some
problem with Gem/examples/10.glsl/05.multitexture_bis.pd if i open and close this patch, pd segfault (even without opening a rendering window). The patch did work.
afaict, this has been fixed as well.
nope, it is still crashing here.
in fact, there is an other bug : open Gem/examples/10.glsl/05.multitexture_bis.pd start rendering (optionally close it). remove pix_multitexture or close the patch : pd segfault.
i just fill a bug report
- gemmouse work, but not gemkeyname
yes, that's a bug.
should i fill a bug report, or bill it be fixed before?
bugreport is made.
cheers c
Le 22 août 2014 15:53, "Cyrille Henry" ch@chnry.net a écrit :
Le 21/08/2014 19:13, Cyrille Henry a écrit :
- i did not try all example, but most work. i do however have some
problem with Gem/examples/10.glsl/05.multitexture_bis.pd if i open and close this patch, pd segfault (even without opening
a
rendering window). The patch did work.
afaict, this has been fixed as well.
nope, it is still crashing here.
in fact, there is an other bug : open Gem/examples/10.glsl/05.multitexture_bis.pd start rendering (optionally close it). remove pix_multitexture or close the patch : pd segfault.
i just fill a bug report
- gemmouse work, but not gemkeyname
yes, that's a bug.
should i fill a bug report, or bill it be fixed before?
bugreport is made.
There is already one here : https://github.com/umlaeute/Gem/issues/43
+ A
cheers
c
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256
On 2014-08-22 16:27, Antoine Villeret wrote:
bugreport is made.
There is already one here : https://github.com/umlaeute/Gem/issues/43
yeah, it's a bit unfortunate, that we are (or rather: I am) using both github and sourceforge ans code-respositories *and* issue trackers.
personally i find github better to work with (e.g. i can close a ticket with a commit, rather than having to manually do that), but then sf has been *the* official source forever and offers a nice distinction between bugs and feature requests....
so i think, for now i will keep using both sites, with github being more developer centric (i definitely encourage github for contributions; also i will usually push to github before i push to sourceforge), and sf being more end-user centric (e.g. you must have a github-account to create a ticket; whereas you can do that anonymously on sf, or at least use OpenID)
i will close ticket duplicates *within* a ticket-system, but keep them open if reported on both systems (until they are fixed of course), in order to keep the cognitive load for having two trackers to myself.
fgmasdr IOhannes
Hello,
Le 20/08/2014 10:07, IOhannes m zmoelnig a écrit :
conclusion: add abstractions/ to your path, so you have a proper [gemwin].
IMHO, these abstractions should stand in the same path as the other objects (ie next to the Gem.pd_xx) From the user point of view there is no difference between object that are externals from the lib and objects that are abstractions that rely on externals from the lib. Atm, the abstractions achieve functionality that are really close to other objects from gem, or even that used to be objects in Gem.
It means the compatiblity is broken just because of the displacements of these objects in a new path ( ./abstractions)
Moreover, the management of path/lib is now cleaner directly in the patch with [declare], it means someone has to [declare -lib Gem -path Gem/abstractions] to get them, and as they cover the mandatory functions of Gem (gemhead, gemwin) it makes the import of the library more complex all the time.
If possible Gem should work with [declare -lib Gem], is there a proper way to do that?
Best,
Nicolas
Le 20/08/2014 11:16, Nicolas Montgermont a écrit :
Hello,
Le 20/08/2014 10:07, IOhannes m zmoelnig a écrit :
conclusion: add abstractions/ to your path, so you have a proper [gemwin].
IMHO, these abstractions should stand in the same path as the other objects (ie next to the Gem.pd_xx)
i agree, the make install should copy them. c
From the user point of view there is no difference between object that are externals from the lib and objects that are abstractions that rely on externals from the lib. Atm, the abstractions achieve functionality that are really close to other objects from gem, or even that used to be objects in Gem.
It means the compatiblity is broken just because of the displacements of these objects in a new path ( ./abstractions)
Moreover, the management of path/lib is now cleaner directly in the patch with [declare], it means someone has to [declare -lib Gem -path Gem/abstractions] to get them, and as they cover the mandatory functions of Gem (gemhead, gemwin) it makes the import of the library more complex all the time.
If possible Gem should work with [declare -lib Gem], is there a proper way to do that?
Best,
Nicolas
Le 20/08/2014 11:22, Cyrille Henry a écrit :
Le 20/08/2014 11:16, Nicolas Montgermont a écrit :
Hello,
Le 20/08/2014 10:07, IOhannes m zmoelnig a écrit :
conclusion: add abstractions/ to your path, so you have a proper [gemwin].
IMHO, these abstractions should stand in the same path as the other objects (ie next to the Gem.pd_xx)
i agree, the make install should copy them. c
You can create [abstractions/gemwin] to use the gemwin abstraction. ++
Jack
From the user point of view there is no difference between object that are externals from the lib and objects that are abstractions that rely on externals from the lib. Atm, the abstractions achieve functionality that are really close to other objects from gem, or even that used to be objects in Gem.
It means the compatiblity is broken just because of the displacements of these objects in a new path ( ./abstractions)
Moreover, the management of path/lib is now cleaner directly in the patch with [declare], it means someone has to [declare -lib Gem -path Gem/abstractions] to get them, and as they cover the mandatory functions of Gem (gemhead, gemwin) it makes the import of the library more complex all the time.
If possible Gem should work with [declare -lib Gem], is there a proper way to do that?
Best,
Nicolas
GEM-dev mailing list GEM-dev@lists.iem.at http://lists.puredata.info/listinfo/gem-dev