[PD] Join my network on LinkedIn

2011-07-14 Thread Cyrill Duneau via LinkedIn
LinkedIn Cyrill Duneau requested to add you as a connection on LinkedIn: -- I'd like to add you to my professional network on LinkedIn. Accept invitation from Cyrill Duneau

Re: [PD] Join my network on LinkedIn

2011-07-14 Thread Mathieu Bouchard
On Thu, 14 Jul 2011, Cyrill Duneau via LinkedIn wrote: Cyrill Duneau requested to add you as a connection on LinkedIn: I'd like to add you to my professional network on LinkedIn. This kind of feature just shows that LinkedIn can go as low as any other FaceBook-style site when it comes to

[PD] MinGW + Eclipse + MSWIN helloworld

2011-07-14 Thread luca paganotti
Hi all, i'm beginning hacking pd externals, I'm trying to use Eclipse Helios (3.6) with 1. CDT Version: 7.0.2.201102110609 Build id: 201102110609 2. pd-extended 0.42.5 3. MingW installed using mingw-get so I think the last stable version (gnu make 3.82, gcc 4.2.5 etc ...) So i

Re: [PD] MinGW + Eclipse + MSWIN helloworld

2011-07-14 Thread Mathieu Bouchard
On Thu, 14 Jul 2011, luca paganotti wrote: but ... I get 'undefined reference' (s) for all the pd symbols that are used by helloworld.c i.e. pd_new, gensym, class_new, class_addbang, post You need to use the -shared option to produce a .so or .DLL file. In addition, you need to link with

Re: [PD] MinGW + Eclipse + MSWIN helloworld

2011-07-14 Thread Hans-Christoph Steiner
On Thu, 14 Jul 2011 12:44 -0400, Mathieu Bouchard ma...@artengine.ca wrote: On Thu, 14 Jul 2011, luca paganotti wrote: but ... I get 'undefined reference' (s) for all the pd symbols that are used by helloworld.c i.e. pd_new, gensym, class_new, class_addbang, post You need to use the

Re: [PD] MinGW + Eclipse + MSWIN helloworld

2011-07-14 Thread luca paganotti
Hi Mathieu, thank you for the prompt answer, here it is the portion of my makefile that governs the windows build: # --- NT --- pd_nt: $(TARGETS) MINGWCFLAGS = -DPD -O2 -funroll-loops -fomit-frame-pointer \ -Wall -W -Wshadow -Wstrict-prototypes

Re: [PD] MinGW + Eclipse + MSWIN helloworld

2011-07-14 Thread luca paganotti
Hi Hans, I can read only part of your answer. I can read till you say: ... If you use the and then no more Anyway I must say that I've no problem with the same example under a linux box running fedora 14. ___ Pd-list@iem.at mailing list UNSUBSCRIBE

Re: [PD] MinGW + Eclipse + MSWIN helloworld

2011-07-14 Thread Hans-Christoph Steiner
On Thu, 14 Jul 2011 12:44 -0400, Mathieu Bouchard ma...@artengine.ca wrote: On Thu, 14 Jul 2011, luca paganotti wrote: but ... I get 'undefined reference' (s) for all the pd symbols that are used by helloworld.c i.e. pd_new, gensym, class_new, class_addbang, post You need to use the

Re: [PD] MinGW + Eclipse + MSWIN helloworld

2011-07-14 Thread Mathieu Bouchard
On Thu, 14 Jul 2011, luca paganotti wrote: mingw32-make pd_nt mingw32-gcc.exe -shared -lm -lkernel32 -lcoldname -lcrtdll -Lc:/Programmi/pd/bin -lpd -DPD -O2 -funroll-loops -fomit-frame-pointer -Wall -W -Wshadow -Wstrict-prototypes -Werror -Wno-unused -Wno-parentheses -Wno-switch

Re: [PD] MinGW + Eclipse + MSWIN helloworld

2011-07-14 Thread luca paganotti
On Thu, Jul 14, 2011 at 7:02 PM, Hans-Christoph Steiner h...@at.or.atwrote: On Thu, 14 Jul 2011 12:44 -0400, Mathieu Bouchard ma...@artengine.ca wrote: On Thu, 14 Jul 2011, luca paganotti wrote: but ... I get 'undefined reference' (s) for all the pd symbols that are used by

Re: [PD] MinGW + Eclipse + MSWIN helloworld

2011-07-14 Thread Martin Peach
On 2011-07-14 13:15, Mathieu Bouchard wrote: On Thu, 14 Jul 2011, luca paganotti wrote: mingw32-make pd_nt mingw32-gcc.exe -shared -lm -lkernel32 -lcoldname -lcrtdll -Lc:/Programmi/pd/bin -lpd -DPD -O2 -funroll-loops -fomit-frame-pointer -Wall -W -Wshadow -Wstrict-prototypes -Werror

Re: [PD] MinGW + Eclipse + MSWIN helloworld

2011-07-14 Thread Hans-Christoph Steiner
On Thu, 14 Jul 2011 15:44 -0400, Martin Peach martin.pe...@sympatico.ca wrote: On 2011-07-14 13:15, Mathieu Bouchard wrote: On Thu, 14 Jul 2011, luca paganotti wrote: mingw32-make pd_nt mingw32-gcc.exe -shared -lm -lkernel32 -lcoldname -lcrtdll -Lc:/Programmi/pd/bin -lpd -DPD -O2

Re: [PD] MinGW + Eclipse + MSWIN helloworld

2011-07-14 Thread Hans-Christoph Steiner
On Thu, 14 Jul 2011 20:15 +0200, luca paganotti luca.pagano...@gmail.com wrote: On Thu, Jul 14, 2011 at 7:02 PM, Hans-Christoph Steiner h...@at.or.atwrote: On Thu, 14 Jul 2011 12:44 -0400, Mathieu Bouchard ma...@artengine.ca wrote: On Thu, 14 Jul 2011, luca paganotti wrote: but

Re: [PD] MinGW + Eclipse + MSWIN helloworld

2011-07-14 Thread Hans-Christoph Steiner
On Thu, 14 Jul 2011 20:15 +0200, luca paganotti luca.pagano...@gmail.com wrote: On Thu, Jul 14, 2011 at 7:02 PM, Hans-Christoph Steiner h...@at.or.atwrote: On Thu, 14 Jul 2011 12:44 -0400, Mathieu Bouchard ma...@artengine.ca wrote: On Thu, 14 Jul 2011, luca paganotti wrote: but