> > http://midas.psi.ch/elog/download/windows/elogd-snapshot.exe
> >
> > is for windows, for linux you have to recompile with
> >
> > gcc -O -o elogd elogd.c
> >
> > Best regards,
> >
> > Stefan
>
> Hi Stefan,
>
> I tried compile it in gentoo 1.4 GCC 3.3.3 without problem. However, it refuse
> to run on ipcop box. The error message,
> ./elogd: /lib/libc.so.6: version `GLIBC_2.3' not found (required by ./elogd)
>
> I guess the kernel and/or compiler version is not matching. Any simple way to
> fix it? Thanks for your help?
Looks like a weird Linux installation. Maybe try to link static:
gcc -O -static -o elogd elogd.c
executable will be much bigger, but maybe work... |