From: Iwan B. <ib...@co...> - 2003-07-31 12:39:53
|
I gave it up trying to compile the source on windows and changed to unix. But unfortunately I was not succesful as well :-(( After invoking configure, the 'make' command outputs the following: ibirrer@tardis-b03:~/opencxx>make make all-recursive ... make: Fatal error in reader: Makefile.gc, line 351: Extra `:', `::', or `:=' on dependency line Current working directory /home/ibirrer/opencxx/gc ... - The unix System is running under solaris. - I use the actual CVS version. - Version 2.5.12 is compiling succesfully Thanks for any help! Iwan |
From: Grzegorz J. <ja...@he...> - 2003-08-01 00:27:10
|
On Thu, 31 Jul 2003, Iwan Birrer wrote: > I gave it up trying to compile the source on windows and changed to unix. > But unfortunately I was not succesful as well :-(( > > After invoking configure, the 'make' command outputs the following: > > ibirrer@tardis-b03:~/opencxx>make > make all-recursive > ... > make: Fatal error in reader: Makefile.gc, line 351: Extra `:', `::', or `:=' > on > dependency line > Current working directory /home/ibirrer/opencxx/gc > ... > > - The unix System is running under solaris. > - I use the actual CVS version. > - Version 2.5.12 is compiling succesfully Looks like your make is not smart enough. Use GNU make (perhaps it lives on your system as gmake; ./configure MAKE=gmake should do the trick). Best regards Grzegorz > > > Thanks for any help! > > Iwan > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > Opencxx-users mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/opencxx-users > > ################################################################## # Grzegorz Jakacki Huada Electronic Design # # Senior Engineer, CAD Dept. 1 Gaojiayuan, Chaoyang # # tel. +86-10-64365577 x2074 Beijing 100015, China # # Copyright (C) 2002 Grzegorz Jakacki, HED. All Rights Reserved. # ################################################################## |
From: Iwan B. <ib...@co...> - 2003-08-04 09:28:16
|
Thanks a lot! That did the job. Unfortunately I already have the next problem... I tried to compile the samples with gmake as well but was not succesful... The error message looks like that: ../src/occ -- -g -o person person.cc lt_dlopen(VerboseClass-init.so) failed: ld.so.1: ../src/occ: fatal: VerboseClass-init.so: open failed: No such file or directory gmake: *** [person] Error 1 I have set the LD_LIBRARY_PATH variable to the sample directory with set LD_LIBRARY_PATH=/home/ibirrer/data/opencxx/sample Regards Iwan ----- Original Message ----- From: "Grzegorz Jakacki" <ja...@he...> To: "Iwan Birrer" <ib...@co...> Cc: <ope...@li...> Sent: Friday, August 01, 2003 2:26 AM Subject: Re: [Opencxx-users] Compiling under solaris > On Thu, 31 Jul 2003, Iwan Birrer wrote: > > > I gave it up trying to compile the source on windows and changed to unix. > > But unfortunately I was not succesful as well :-(( > > > > After invoking configure, the 'make' command outputs the following: > > > > ibirrer@tardis-b03:~/opencxx>make > > make all-recursive > > ... > > make: Fatal error in reader: Makefile.gc, line 351: Extra `:', `::', or `:=' > > on > > dependency line > > Current working directory /home/ibirrer/opencxx/gc > > ... > > > > - The unix System is running under solaris. > > - I use the actual CVS version. > > - Version 2.5.12 is compiling succesfully > > Looks like your make is not smart enough. Use GNU make (perhaps it lives > on your system as gmake; ./configure MAKE=gmake should do the trick). > > Best regards > Grzegorz > > > > > > > Thanks for any help! > > > > Iwan > > > > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > > Data Reports, E-commerce, Portals, and Forums are available now. > > Download today and enter to win an XBOX or Visual Studio .NET. > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > > _______________________________________________ > > Opencxx-users mailing list > > Ope...@li... > > https://lists.sourceforge.net/lists/listinfo/opencxx-users > > > > > > ################################################################## > # Grzegorz Jakacki Huada Electronic Design # > # Senior Engineer, CAD Dept. 1 Gaojiayuan, Chaoyang # > # tel. +86-10-64365577 x2074 Beijing 100015, China # > # Copyright (C) 2002 Grzegorz Jakacki, HED. All Rights Reserved. # > ################################################################## > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > Opencxx-users mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/opencxx-users > |
From: Grzegorz J. <ja...@he...> - 2003-08-05 07:42:04
|
On Mon, 4 Aug 2003, Iwan Birrer wrote: > Thanks a lot! That did the job. Unfortunately I already have the next > problem... I tried to compile the samples with gmake as well but was not > succesful... The error message looks like that: > > ../src/occ -- -g -o person person.cc > lt_dlopen(VerboseClass-init.so) failed: ld.so.1: ../src/occ: fatal: > VerboseClass-init.so: open failed: No such file or directory > gmake: *** [person] Error 1 > > I have set the LD_LIBRARY_PATH variable to the sample directory with > > set LD_LIBRARY_PATH=/home/ibirrer/data/opencxx/sample I am not sure what shell you are using, but with some shells (e.g. sh, ksh, bash) you also need to "export" the variable: export LD_LIBRARY_PATH Does it help? BR Grzegorz > > Regards > Iwan > > > ----- Original Message ----- > From: "Grzegorz Jakacki" <ja...@he...> > To: "Iwan Birrer" <ib...@co...> > Cc: <ope...@li...> > Sent: Friday, August 01, 2003 2:26 AM > Subject: Re: [Opencxx-users] Compiling under solaris > > > > On Thu, 31 Jul 2003, Iwan Birrer wrote: > > > > > I gave it up trying to compile the source on windows and changed to > unix. > > > But unfortunately I was not succesful as well :-(( > > > > > > After invoking configure, the 'make' command outputs the following: > > > > > > ibirrer@tardis-b03:~/opencxx>make > > > make all-recursive > > > ... > > > make: Fatal error in reader: Makefile.gc, line 351: Extra `:', `::', or > `:=' > > > on > > > dependency line > > > Current working directory /home/ibirrer/opencxx/gc > > > ... > > > > > > - The unix System is running under solaris. > > > - I use the actual CVS version. > > > - Version 2.5.12 is compiling succesfully > > > > Looks like your make is not smart enough. Use GNU make (perhaps it lives > > on your system as gmake; ./configure MAKE=gmake should do the trick). > > > > Best regards > > Grzegorz > > > > > > > > > > > Thanks for any help! > > > > > > Iwan > > > > > > > > > > > > > > > ------------------------------------------------------- > > > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > > > Data Reports, E-commerce, Portals, and Forums are available now. > > > Download today and enter to win an XBOX or Visual Studio .NET. > > > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > > > _______________________________________________ > > > Opencxx-users mailing list > > > Ope...@li... > > > https://lists.sourceforge.net/lists/listinfo/opencxx-users > > > > > > > > > > ################################################################## > > # Grzegorz Jakacki Huada Electronic Design # > > # Senior Engineer, CAD Dept. 1 Gaojiayuan, Chaoyang # > > # tel. +86-10-64365577 x2074 Beijing 100015, China # > > # Copyright (C) 2002 Grzegorz Jakacki, HED. All Rights Reserved. # > > ################################################################## > > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > > Data Reports, E-commerce, Portals, and Forums are available now. > > Download today and enter to win an XBOX or Visual Studio .NET. > > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > > _______________________________________________ > > Opencxx-users mailing list > > Ope...@li... > > https://lists.sourceforge.net/lists/listinfo/opencxx-users > > > > > > ------------------------------------------------------- > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > Data Reports, E-commerce, Portals, and Forums are available now. > Download today and enter to win an XBOX or Visual Studio .NET. > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > _______________________________________________ > Opencxx-users mailing list > Ope...@li... > https://lists.sourceforge.net/lists/listinfo/opencxx-users > > ################################################################## # Grzegorz Jakacki Huada Electronic Design # # Senior Engineer, CAD Dept. 1 Gaojiayuan, Chaoyang # # tel. +86-10-64365577 x2074 Beijing 100015, China # # Copyright (C) 2002 Grzegorz Jakacki, HED. All Rights Reserved. # ################################################################## |
From: Iwan B. <ib...@co...> - 2003-08-05 07:53:59
|
Thanks, that did id. Although I had to start a new shell (bash) first to be able to use the export command. Thanks a lot! Cheers Iwan > I am not sure what shell you are using, but with some shells (e.g. sh, > ksh, bash) you also need to "export" the variable: > > export LD_LIBRARY_PATH > > Does it help? > > BR > Grzegorz > > > > > Regards > > Iwan > > > > > > ----- Original Message ----- > > From: "Grzegorz Jakacki" <ja...@he...> > > To: "Iwan Birrer" <ib...@co...> > > Cc: <ope...@li...> > > Sent: Friday, August 01, 2003 2:26 AM > > Subject: Re: [Opencxx-users] Compiling under solaris > > > > > > > On Thu, 31 Jul 2003, Iwan Birrer wrote: > > > > > > > I gave it up trying to compile the source on windows and changed to > > unix. > > > > But unfortunately I was not succesful as well :-(( > > > > > > > > After invoking configure, the 'make' command outputs the following: > > > > > > > > ibirrer@tardis-b03:~/opencxx>make > > > > make all-recursive > > > > ... > > > > make: Fatal error in reader: Makefile.gc, line 351: Extra `:', `::', or > > `:=' > > > > on > > > > dependency line > > > > Current working directory /home/ibirrer/opencxx/gc > > > > ... > > > > > > > > - The unix System is running under solaris. > > > > - I use the actual CVS version. > > > > - Version 2.5.12 is compiling succesfully > > > > > > Looks like your make is not smart enough. Use GNU make (perhaps it lives > > > on your system as gmake; ./configure MAKE=gmake should do the trick). > > > > > > Best regards > > > Grzegorz > > > > > > > > > > > > > > > Thanks for any help! > > > > > > > > Iwan > > > > > > > > > > > > > > > > > > > > ------------------------------------------------------- > > > > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > > > > Data Reports, E-commerce, Portals, and Forums are available now. > > > > Download today and enter to win an XBOX or Visual Studio .NET. > > > > > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > > > > _______________________________________________ > > > > Opencxx-users mailing list > > > > Ope...@li... > > > > https://lists.sourceforge.net/lists/listinfo/opencxx-users > > > > > > > > > > > > > > ################################################################## > > > # Grzegorz Jakacki Huada Electronic Design # > > > # Senior Engineer, CAD Dept. 1 Gaojiayuan, Chaoyang # > > > # tel. +86-10-64365577 x2074 Beijing 100015, China # > > > # Copyright (C) 2002 Grzegorz Jakacki, HED. All Rights Reserved. # > > > ################################################################## > > > > > > > > > > > > ------------------------------------------------------- > > > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > > > Data Reports, E-commerce, Portals, and Forums are available now. > > > Download today and enter to win an XBOX or Visual Studio .NET. > > > > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > > > _______________________________________________ > > > Opencxx-users mailing list > > > Ope...@li... > > > https://lists.sourceforge.net/lists/listinfo/opencxx-users > > > > > > > > > > > ------------------------------------------------------- > > This SF.Net email sponsored by: Free pre-built ASP.NET sites including > > Data Reports, E-commerce, Portals, and Forums are available now. > > Download today and enter to win an XBOX or Visual Studio .NET. > > http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01 > > _______________________________________________ > > Opencxx-users mailing list > > Ope...@li... > > https://lists.sourceforge.net/lists/listinfo/opencxx-users > > > > > > ################################################################## > # Grzegorz Jakacki Huada Electronic Design # > # Senior Engineer, CAD Dept. 1 Gaojiayuan, Chaoyang # > # tel. +86-10-64365577 x2074 Beijing 100015, China # > # Copyright (C) 2002 Grzegorz Jakacki, HED. All Rights Reserved. # > ################################################################## > |