1. Translate
- Posted by John Rebert <trebert at telia.com> Aug 24, 2005
- 476 views
- Last edited Aug 25, 2005
Hi I have recently switched to Linux and decided to give Euphoria another try, used it a lot some years ago. The E to C translator gives me some trouble, see the clip: [tobbe at (none) random]$ ./emake compiling with GNU C main_.c random.c get.c init_.c linking /usr/bin/ld: cannot find -lgpm collect2: ld returned 1 exit status you can now execute: ./random [tobbe@(none) random]$ According to previous messages the problem could be missing GPM libs, problem is, I do have the libs and GPM is installed. Any suggestions? Sorry for english, not my native language. John
2. Re: Translate
- Posted by Alexander Toresson <alexander.toresson at gmail.com> Aug 24, 2005
- 484 views
- Last edited Aug 25, 2005
John Rebert wrote: > Hi > I have recently switched to Linux and decided to give Euphoria another tr= y, used it a lot some years ago. > The E to C translator gives me some trouble, see the clip: > > [tobbe at (none) random]$ ./emake > compiling with GNU C > main_.c > random.c > get.c > init_.c > linking > /usr/bin/ld: cannot find -lgpm > collect2: ld returned 1 exit status > you can now execute: ./random > [tobbe@(none) random]$ > > According to previous messages the problem could be missing GPM libs, pro= blem is, I do have the libs and > GPM is installed. Any suggestions? > Sorry for english, not my native language. > > John > You also need to have the dev libs for gpm installed. Regards, Alexander Toresson
3. Re: Translate
- Posted by John Rebert <trebert at telia.com> Aug 25, 2005
- 490 views
Alexander Toresson wrote: > > John Rebert wrote: > > Hi > > I have recently switched to Linux and decided to give Euphoria another tr= > y, used it a lot some years ago. > > The E to C translator gives me some trouble, see the clip: > > > > [tobbe at (none) random]$ ./emake > > compiling with GNU C > > main_.c > > random.c > > get.c > > init_.c > > linking > > /usr/bin/ld: cannot find -lgpm > > collect2: ld returned 1 exit status > > you can now execute: ./random > > [tobbe@(none) random]$ > > > > According to previous messages the problem could be missing GPM libs, pro= > blem is, I do have the libs and > > GPM is installed. Any suggestions? > > Sorry for english, not my native language. > > > > John > > > > You also need to have the dev libs for gpm installed. > > Regards, Alexander Toresson > > I think I have the dev libs, anyhow I installed the devel-GPM package from Mandriva but with no luck. I guess I have to recheck my installations again. John
4. Re: Translate
- Posted by yvan Godin <yvan.godin at free.fr> Aug 25, 2005
- 495 views
John Rebert wrote: > > Alexander Toresson wrote: > > > > John Rebert wrote: > > > Hi > > > I have recently switched to Linux and decided to give Euphoria another tr= > > y, used it a lot some years ago. > > > The E to C translator gives me some trouble, see the clip: > > > > > > [tobbe at (none) random]$ ./emake > > > compiling with GNU C > > > main_.c > > > random.c > > > get.c > > > init_.c > > > linking > > > /usr/bin/ld: cannot find -lgpm > > > collect2: ld returned 1 exit status > > > you can now execute: ./random > > > [tobbe@(none) random]$ > > > > > > According to previous messages the problem could be missing GPM libs, pro= > > blem is, I do have the libs and > > > GPM is installed. Any suggestions? > > > Sorry for english, not my native language. > > > > > > John > > > > > > > You also need to have the dev libs for gpm installed. > > > > Regards, Alexander Toresson > > > > > I think I have the dev libs, anyhow I installed the devel-GPM package from > Mandriva > but with no luck. I guess I have to recheck my installations again. > > John > I have recently try Euphoria on Linux To compile I had to create a link on my /usr/lib ln -s /usr/lib/libgpm.so.1 /usr/lib/libgpm.so (beeing root of course) hope this help Yvan
5. Re: Translate
- Posted by John Rebert <trebert at telia.com> Aug 25, 2005
- 489 views
yvan Godin wrote: > > John Rebert wrote: > > > > Alexander Toresson wrote: > > > > > > John Rebert wrote: > > > > Hi > > > > I have recently switched to Linux and decided to give Euphoria another > > > > tr= > > > y, used it a lot some years ago. > > > > The E to C translator gives me some trouble, see the clip: > > > > > > > > [tobbe at (none) random]$ ./emake > > > > compiling with GNU C > > > > main_.c > > > > random.c > > > > get.c > > > > init_.c > > > > linking > > > > /usr/bin/ld: cannot find -lgpm > > > > collect2: ld returned 1 exit status > > > > you can now execute: ./random > > > > [tobbe@(none) random]$ > > > > > > > > According to previous messages the problem could be missing GPM libs, > > > > pro= > > > blem is, I do have the libs and > > > > GPM is installed. Any suggestions? > > > > Sorry for english, not my native language. > > > > > > > > John > > > > > > > > > > You also need to have the dev libs for gpm installed. > > > > > > Regards, Alexander Toresson > > > > > > > > I think I have the dev libs, anyhow I installed the devel-GPM package from > > Mandriva > > but with no luck. I guess I have to recheck my installations again. > > > > John > > > > I have recently try Euphoria on Linux > > To compile I had to create a link on my /usr/lib > > ln -s /usr/lib/libgpm.so.1 /usr/lib/libgpm.so > (beeing root of course) > > hope this help > > Yvan > Yes that solved it, thank you very much Yvan John