On 9/25/2012 10:21 AM, sim wrote:
> Hello NG
> I need a big help.
>
> I have an OS Windows XP, installed on it di MinGW suite in order to
> compile C files.
> I installed the MySql odbc connector
>
> I have problems on all my C files where i declare:
>
> #include <mysql/mysql.h>
>
>
> The answer is everytime the same:
>
> no file…or directory
It appears the compiler doesn't know where to find the
#include'd files. There is probably a compiler option to
tell it where to look, something like
gcc -I c:/mysql7.2/include ... yourfile.c ...
The details will vary depending on exactly where the include
files are located.
--
Eric Sosman
d