开发者

How can I check with which options was program compiled?

开发者 https://www.devze.com 2023-01-16 22:39 出处:网络
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 opt开发者_开发问答ions (+

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 opt开发者_开发问答ions (+ some extra).


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消