Re: [Mono-dev] Can't find C runtime library while installing mono

2006-08-03 Thread Bill Seurer
Just a follow-up on how we resolved this. It turned out that glib (gmodule specifically) doesn't handle libraries on AIX (and thus PASE on i5/OS) properly. We did a little bit of hacking on it and now the problem does not occur. -- Bill Seurer IBM System i5 internal compiler development

[Mono-dev] Can't find C runtime library while installing mono

2006-08-02 Thread Bill Seurer
We have mono building and running OK under PASE on i5/OS (i.e., AIX) but get an error when installing: gmake install ... gmake[6]: Entering directory `/QOpenSys/home/seurer/dev/mono-1.1.15 /mcs/class/System' gmake install-local gmake[7]: Entering directory `/QOpenSys/home/seurer/dev/mono-1.1.15

Re: [Mono-dev] Can't find C runtime library while installing mono

2006-08-02 Thread Zoltan Varga
Hey, You need to set the LIBC variable in configure.in in the section for you architecture /os. Zoltan On 8/2/06, Bill Seurer [EMAIL PROTECTED] wrote: We have mono building and running OK under PASE on i5/OS (i.e., AIX) but get an error when installing: gmake install ...

Re: [Mono-dev] Can't find C runtime library while installing mono

2006-08-02 Thread Bill Seurer
It is set. And comparing to a mono that installs on a different OS (Linux on the same hardware) it appears to be correct (libc really is libc.a on this system). My thought is that for some reason the installer can't find it and I need to set something to help it in its search. -- Bill Seurer

Re: [Mono-dev] Can't find C runtime library while installing mono

2006-08-02 Thread Zoltan Varga
Hey, The value of LIBC should point to the shared library, not the static libc, since the runtime wants to load it dynamically using dlopen (). Zoltan On 8/2/06, Bill Seurer [EMAIL PROTECTED] wrote: It is set. And comparing to a mono that installs on a different