Ubuntu - #include no such file or directory

后端 未结 4 897
盖世英雄少女心
盖世英雄少女心 2021-01-02 23:25

I\'m developping a C-program using Curl on Ubuntu. I\'m using Eclipse Kepler. I have installed the curl library using

apt-get install libcurl4-gnutls-dev

4条回答
  •  爱一瞬间的悲伤
    2021-01-02 23:54

    C compilers' (preprocessors', actually) standard include file searching paths should include /usr/include, therefore if the include file curl.h is located in /usr/include/curl/ and is included by #include , C compilers, such as gcc, should be able to find it without any problem.

    However, you are using a toolchain under /opt/toolchains/arm-2011.V2/bin, I guess it is a cross-compiling toolchain. In this case, you cannot use the curl library, because which is for the host system, which probably is a x86 or x86_64 system.

    To use curl library in your ARM project, you need to install the curl library development package for ARM, if that is possible. If the software repositories do not have those packages, then you need to download the source code and cross-compile it for ARM first.

提交回复
热议问题