ckim@bambam.UUCP (Cheol Kim) (02/01/90)
From article <4914@crcge1.UUCP>, by chochon@crcge1.UUCP (Helene Chochon): > > One prerequisite is to modify all VxWorks header files > into C++ format (or at least into ANSI C format). > If this task has already been done by someone and if it is available, > we would appreciate to get it. It would be a great help. You don't need to do this. There is a provision for vanilla C header file. It goes like this; extern "C" { #include <math.h> } This away, how does one go about? There are whole bunch of routines necessary. Some of them are; constructors, destructors, start up routines and so on. I have gotten to make simple examples working but could not make anything decent working. So, you grab library source and compile with vxWorks. Have your fingers crossed? If you see some loader complaints, delve into those routines. Some you may end writing them yourselves. One of these days, I complete this port.