Windows libxml error

1

When we do a #include in the c ++ language using the special characters < > where is the folder / file of that include?

I am compiling a program that I downloaded and in this program there are the following lines of code:

28 #include <libxml/xmlmemory.h>
29 #include <libxml/parser.h>
30 #include <libxml/threads.h>

And when I try to compile the following error:

28  30  C:\Users\joao\Desktop\OT\Projeto OT Global\SOURCE 1.0.6\otpch.h [Error] libxml/xmlmemory.h: No such file or directory

Well then I downloaded this library and I would like to know where it stays on the windows so I can put it in place and correct that error.

    
asked by anonymous 18.03.2015 / 01:14

1 answer

0

According to the Dev-C ++ FAQ , the include directory can be located at:

  

C: \ Dev-C ++ \ include \

In the Code :: Blocks the directory (in a normal installation) is usually:

  C: \ Program Files \ CodeBlocks \ MinGW \ lib \ gcc \ mingw32 \ 4.7.1 \ include \

No MingGW :

  

C: \ MinGW \ include \

On Unix the include folder can be located in any of the following directories: / p>

/usr/local/include
libdir/gcc/target/version/include
/usr/target/include
/usr/include
    
18.03.2015 / 01:45