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
342 views
in Technique[技术] by (71.8m points)

c - New .h file in /usr/include linux

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

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

1 Answer

0 votes
by (71.8m points)

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.


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

...