Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在阅读一些自述文件,它们包含一些带有“-devel”的软件包,而有些则没有。有什么不同?
sudo yum install gcc (vs) sudo yum install pcre-devel
如果我改为安装“sudo yum install pcre”会发生什么?
开发库通常包含最终用户运行时不需要的开发头文件和调试资源。这些头文件和调试资源用于开发基于库的应用程序;不仅仅是运行需要该库的应用程序。如果您在没有 -devel 的情况下安装包,它只会安装最终用户运行时,而不是开发头文件和调试符号。