Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
607 views
in Technique[技术] by (71.8m points)

c - GCC compiler cannot find stdio.h

OS - Windows. I'm using a MinGW compiler. When trying to compile a simple program:

#include <stdio.h>

int main()
{
    printf("Hello, world
");
}

through the console command:

gcc.exe -g (filedir) -o (filedir.obj)

an error message comes up, saying "no include path in which to find stdio.h".

How do I make the compiler find the header and compile the program?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Use the -I option to specify additional include paths as part of the gcc command:

gcc -I /include/file/directory ...

Having said that, you should not need to specify an additional include path to find stdio.h (or any other standard library header). Review how you installed MinGW and make sure you followed all the instructions correctly; you may need to uninstall and re-install.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...