Compilation using Sun C++ 5.0 Compiler.

That was the try of the day. Unfortunately, it doesn't work.

Many short modifications have to be done (e.g. avoid the use of new reserved keywords as variable names, enforce a very strict cast policy, etc). The task doesn't seem to be very diffcult, but is taking some -precious- time. And I've got no idea of the stability of the code produced with C++ 5.0.

Daniel SIDOBRE's picture

You can use CC -compat=4 , as it is proposed in compilator documentation.

For me it compile fine with this option, but I have some trouble in findind incrtcl libraries to link application.

Daniel SIDOBRE