如何检查程序编译时使用了哪些选项?
我想知道在 make 之前传递给程序的选项,该选项当前安装在我的 Ubuntu 上(来自 deb)。我想使用相同的选项(+一些额外的)手动编译它。
I would like to know options which where passed to program before make, which is currently installed on my Ubuntu (from deb). I would like to compile it manualy with the same options (+ some extra).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您知道程序来自哪个包(使用 dpkg -S 来查找),您可以使用 apt-get source $SOURCEPACKAGENAME(使用 apt-cache show 以找出这一点)源包并研究
debian/rules
中的构建脚本,该脚本控制包的配置、构建和拆分为.deb
的方式>s。If you know what package the program came from (use
dpkg -S
to find this out), you canapt-get source $SOURCEPACKAGENAME
(useapt-cache show
to find this out) the source package and study the build script indebian/rules
, which controls how the package is configured, built and split into.deb
s.