8574221 wrote:> I've also tried using KylixRecompile but this produces the message ":bad interpreter: no such file or directory".
can your post the output of the KylixRecompile arround this error message please. Then it is possible to narrow the stage of compiling...
The error message appears immediately upon running ./KylixRecompile.
Since posting my message, I've found a little time to look into this, and it appears that the script is having a problem finding the Kylix install location(s). At the start of the script there are several lines that assign paths e.g. KYLIX3_START_APP='whereis startkylix...'
Kylix3 installation defaults to /usr/local/kylix3, and that is where my installation is located, so I edited the script to reflect these absolute paths.
I tried running the script again, but it couldn't find the source files, so I copied the script file into the source directory, which produced better results - it stopped when it couldn't find 'Messages' (sound familiar?). At least this time it told me what the offending file was - TeEngine.pas.
This file had the following lines:-
uses {$IFNDEF LINUX}
Windows,
{$ENDIF}
SysUtils, Messages,
........
'Messages' appears to be a windows unit, so I changed it to:-
uses {$IFNDEF LINUX}
Windows, Messages,
{$ENDIF}
SysUtils,
........
and compilation prceeded until I got the error:-
make: *** [bplTeePro7K3.so] Segmentation fault
make: *** Deleting 'bplTeePro7K3.so'
Getting depressed by now, I decided to try all of the above with RH7.1, which successfully compiled without any segmentation faults.
However, when it came to make the static libraries, the following error occurred:-
make: *** No rule to make target 'Tee7K3.bpr' needed by 'Tee7K3.a'. Stop
It then went on to generate all the header files.
Short of time, I couldn't look into the static library problem, so made them all manually with kylix C++.
I've now got TeeChart (kind of) working with Kylix, but it throws up errors when I double-click on a chart to open up the property windows - 'illegal border values' or some such messages. I can use the Kylix property editor to change things, but it's not nearly so convenient.
I'm wondering if I'm the first person to try TeeChart7 with Kylix 3, or is it just me. Should it be this hard?
regs
keith