English 中文(简体)
图书馆 C 页眉文件在 Linux 上的位置
原标题:Where do library C header files go on Linux

令人难堪的基本问题。 sudo apt-get install libmemcached6 -.h s 和.o s 或.so s 住在Linux 机器( Ubuntu)上的一个典型的安装中? 我如何确保 g++ 能够接收它们?

最佳回答

它们去 / usr/ including 和 / usr/ lib。 如果您使用 -l 选项( 用于图书馆), 它应该从这些标准位置找到它们。 如果您包括使用 < code_ lt; file.h> , 它也应该从正确的位置获得它 。

问题回答

在 Ubuntu (和其他Debian变体) 上, 您可以使用 < code> dpkk 命令来查找。 例如 :

$ dpkg -L libxml2
/.
/usr
/usr/share
/usr/share/doc
/usr/share/doc/libxml2
/usr/share/doc/libxml2/AUTHORS
/usr/share/doc/libxml2/NEWS.gz
/usr/share/doc/libxml2/TODO.gz
/usr/share/doc/libxml2/copyright
/usr/share/doc/libxml2/README
/usr/share/doc/libxml2/changelog.Debian.gz
/usr/share/doc/libxml2/README.Debian
/usr/lib
/usr/lib/libxml2.so.2.7.8
/usr/lib/libxml2.so.2

可以看到, Debian 软件包通常不包括 .h 文件;这些文件通常在相应的 -dev 软件包中。 您可以在此找到信头文件 :

$ dpkg -L libxml2-dev
/.
/usr
/usr/share
/usr/share/doc
/usr/share/doc/libxml2-dev
/usr/share/doc/libxml2-dev/AUTHORS
/usr/share/doc/libxml2-dev/NEWS.gz
/usr/share/doc/libxml2-dev/TODO.gz
/usr/share/doc/libxml2-dev/copyright
/usr/share/doc/libxml2-dev/README
/usr/share/doc/libxml2-dev/changelog.Debian.gz
/usr/share/aclocal
/usr/share/aclocal/libxml2.m4
/usr/share/man
/usr/share/man/man3
/usr/share/man/man3/libxml.3.gz
/usr/share/man/man1
/usr/share/man/man1/xml2-config.1.gz
/usr/include
/usr/include/libxml2
/usr/include/libxml2/libxml
/usr/include/libxml2/libxml/HTMLtree.h
/usr/include/libxml2/libxml/tree.h
/usr/include/libxml2/libxml/xmlreader.h
/usr/include/libxml2/libxml/xmlschemastypes.h
...

至于gcc ,,'rel=“noreferr'>手册解释它如何搜索头页文件。请注意,这与不同,与使用-l 指示链接人与某个图书馆连接

在Linux和基于Unix的大多数系统上,图书馆可以在这两个地点中的任何一个找到:

  1. /usr/lib/
  2. /usr/local/lib/

这两个地点的区别在于后者用于第三方图书馆。因此,如果您已经公布了自己的图书馆或从第三方存储处(例如ppa)安装了一个图书馆,这些文件应转到/usr/local/lib

使用上述类比可以理解信头文件的存储。 文件夹为 :

  1. /usr/include/
  2. /usr/local/include/




相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?