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

Categories

I developed small c application in linux. For this application i placed .h file in linux standard path (/usr/include). Again i am compiling the same program

Output: FATA ERROR : xyz.h(my own header file) not found

Do i need to update any variable in gcc or way to solve this problem

Thank You

See Question&Answers more detail:os

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

1 Answer

Place the header file in the same directory as your .c file and use -I. when compiling

gcc -I. main.c -o myprog

You shouldn't place your header files in /usr/include that is meant for the system headers.

Note: you don't actually need the -I. because the current directory is searched by default, nevertheless, it doesn't hurt to add it.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...