proparse - how to configure c++ library

greeshma

Member
I was trying to configure prolintver 73 in linux env

Downloaded and Configured prolint directory in propath
Downloaded proparse(linux compatible) with libproparse.so and file libproparse.so placed in /usr/lib directory

changed proparse.p procedures to point libproparse.so instead of DLL file.

PROCEDURE init EXTERNAL "libproparse.so" CDECL PERSISTENT:
DEFINE RETURN PARAMETER theReturn AS LONG.
END.


After running the test program I am getting an error like this
Could not open Dynamic Library: libproparse.so (8013)
DLL Error : /usr/lib/libstdc++.so.6: version `GLIBCXX_3.4.9' not found (required by /usr/lib/libproparse.so) (8014)

Please help................ :)
 

TomBascom

Curmudgeon
FWIW and generally speaking C++ libraries are a royal PITA to work with. Good luck.

The error message is telling you that there is a missing dependency. You will need to fix that by putting the missing `GLIBCXX_3.4.9' library on your system.
 
Top