RE: file or directory not found.

2003-07-10 Thread Rachael Ludwick-Sandefer
> g++ test.cpp -l /xerces-c-src_2_3_0/include/ You might want to try: g++ test.cpp -I/xerces-c-src_2_3_0/include In gcc/g++, include paths are specified with -I, libary paths with -L and actual libraries to link in with -l (lower case ell). So compilation of test.cpp to an executable

file or directory not found.

2003-07-10 Thread Suchit Batheja
hi, After installing xerces-c I managed to build all the examples. They all work fine. But when I tried to modify them & use the makefile I get errors saying the header files were not found. A simple program like this gave the following errors: #include using namespace xercesc; int main {