I am trying to compile a C++ application on SUN server using the compiler Sun C++ 5.9 SunOS_sparc Patch 124863-01. It seems that the Pro*C++ compiler is not able to identify some system header files like vector
, list
...
I am new to C++ and I am wondering if the compiler could not find the header file itself, or it cannot identify it since it was specified without .h
extension.
I checked also the pcscfg.cfg
configuration file (below) which should point to the system header files for pro*C compilation and it seems correct as well:
sys_include=(/usr/include)
ltype=short
PCC-W-02109, SQLCHECK=NONE is no longer supported.. using SYNTAX
Error at line 6, column 10 in file BillImageRef.pcpp
#include <vector>
.........1
PCC-S-02015, unable to open include file
Error at line 6, column 10 in file ./include/BillImageRef.hpp
#include <list>
.........1
PCC-S-02015, unable to open include file
Error at line 7, column 10 in file ./include/BillImageRef.hpp
#include <map>
Any ideas to solve this issue?