Linux compiler program can not find the end of the file solution __linux

Source: Internet
Author: User
Linux compiler to find a solution to the file


When Linux compiles a program, if you cannot find the header file, you will be prompted with the following error:
$ gcc Test.c-o test
Test.c:9:16:fatal error:xxx.h:no such file or directory
#include <xxx.h>

The following is an example of an Ubuntu system.
First find the path where Xxx.h is located:
$ sudo find/-name xxx.h
/usr/local/include/xxx/xxx.h
Then use the-I option to compile the directory:
$ gcc test.c-o test-i/usr/local/include/xxx

Solve the problem.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.