如何检查程序编译时使用了哪些选项?

发布于 2024-09-24 08:46:00 字数 80 浏览 3 评论 0原文

我想知道在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

静谧幽蓝 2024-10-01 08:46:00

如果您知道程序来自哪个包(使用 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 can apt-get source $SOURCEPACKAGENAME (use apt-cache show to find this out) the source package and study the build script in debian/rules, which controls how the package is configured, built and split into .debs.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文