by
Brendan >> Thu, 24 Apr 2008 7:08:24 GMT
Hi,
Haven't tried it on 6.0 but I run 6.1 (which also requires RHEL 3) on RHEL 4. I actually use CentOS, not RHEL but they are the same sources, just different pricing
To get it to work you need to install the compat libraries. If you have yum installed on RHEL 4 try
yum list available 'compat*'
and then something like
yum install compat-glibc.i386
yum install compat-libstdc++-33.i386
yum install compat-gcc-32-c++.i386
If you are compiling your own c and c++ libraries for external functions and methods you may need to make sure the proper compiler is invoked.
I did
ln /usr/bin/g++32 /usr/bin/g++
ln /usr/bin/gcc32 /usr/bin/gcc
but this may be too drastic for your setup.
With the above I am able to run full Jade on CentOS 4 using external functions, dev security, apache, openSSL etc.
One thing I *didn't* manage to do was to get the CardSchema karma.so working. I always got Library not found when calling an external function or method. I managed to get my own .so libraries to work with external functions but not karma. I managed to get round this to still produce exception dumps so it hasn't been a huge deal. My own libraries were compiled on CentOS 4 with the compat libraries installed so this may have something to do with it.
If anyone knows why karma.so (libkarma.so) didn't work I'd be interested to hear from them.
Hope this helps
Brendan